CVTE面试题(编程题)

一、题目描述

删除第一个字符串中出现的第二个字符串当中的字符

str1:welcome to bit

str2:come

ret:wl t bit

通过集合完成:---->

二、思路分析

CVTE面试题(编程题)_第1张图片

三、代码实现

3.1第一种实现代码

public static void main(String[] args) {
        String str1="welcome to bit";
        String str2="come";
        char[] array=str2.toCharArray();
        ArrayList list=new ArrayList<>();
        for (int i=0;i

 3.2第二种代码

public static void main(String[] args) {
        String str1="welcome to bit";
        String str2="come";
        ArrayList list=new ArrayList<>();
        for (int i=0;i

你可能感兴趣的:(面试题,java,算法,数据结构)