jmu-Java-05集合-List中指定元素的删除
分数 10
全屏浏览
切换布局
作者 郑如滨
单位 集美大学
编写以下两个函数
//以空格(单个或多个)为分隔符,将line中的元素抽取出来,放入一个List
public static List<String> convertStringToList(String line)
//在list中移除掉与str内容相同的元素
public static void remove(List<String> list, String str)
裁判测试程序:
public class Main {/*covnertStringToList函数代码*/ /*remove函数代码*/public static void main(String[] args) {Scanner sc = new Scanner(System.in);while(sc.hasNextLine()){List<String> list = convertStringToList(sc.nextLine());System.out.println(list);String word = sc.nextLine();remove(list,word);System.out.println(list);}sc.close();}}
样例说明:底下展示了4组测试数据。
输入样例
1 2 1 2 1 1 1 2
1
11 1 11 1 11
11
2 2 2
1
1 2 3 4 1 3 1
1
输出样例
[1, 2, 1, 2, 1, 1, 1, 2]
[2, 2, 2]
[11, 1, 11, 1, 11]
[1, 1]
[2, 2, 2]
[2, 2, 2]
[1, 2, 3, 4, 1, 3, 1]
[2, 3, 4, 3]
代码长度限制
16 KB
时间限制
400 ms
内存限制
64 MB
public static List<String> convertStringToList(String line){List list=new ArrayList<>();String[]str=line.split("\\s+");for(String s:str){list.add(s);}return list;}public static void remove(List<String>list,String str){list.removeAll(List.of(str));}