1. 程式人生 > >7-2 jmu-Java-02基本語法-08-ArrayList入門

7-2 jmu-Java-02基本語法-08-ArrayList入門

7-2 jmu-Java-02基本語法-08-ArrayList入門 (10 分)
本習題主要用於練習如何使用ArrayList來替換陣列。
新建1個ArrayList strList用來存放字串,然後進行如下操作。

提示:查詢Jdk文件中的ArrayList。
注意:請使用System.out.println(strList)輸出列表元素。

輸入格式
輸入n個字串,放入strList。直到輸入為!!end!!時,結束輸入。

在strList頭部新增一個begin,尾部新增一個end。

輸出列表元素

輸入:字串str

判斷strList中有無包含字串str,如包含輸出true,否則輸出false。並且輸出下標,沒包含返回-1。

在strList中從後往前找。返回其下標,找不到返回-1。

移除掉第1個(下標為0)元素,並輸出。然後輸出列表元素。

輸入:字串str

將第2個(下標為1)元素設定為字串str.

輸出列表元素

輸入:字串str

遍歷strList,將字串中包含str的元素放入另外一個ArrayList strList1,然後輸出strList1。

在strList中使用remove方法,移除第一個和str相等的元素。

輸出strList列表元素。

使用clear方法,清空strList。然後輸出strList的內容,size()與isEmpty(),3者之間用,連線。

輸入樣例:
a1 b1 3b a2 b2 12b c d !!end!!
b1
second
b
輸出樣例:
[begin, a1, b1, 3b, a2, b2, 12b, c, d, end]
true
2
2
begin
[a1, b1, 3b, a2, b2, 12b, c, d, end]
[a1, second, 3b, a2, b2, 12b, c, d, end]
[3b, b2, 12b]
[a1, second, 3b, a2, b2, 12b, c, d, end]
[],0,true

這個題目只是考了ArrayList的基本操作,但是很複雜,需要藉助幫助文件,下面直接貼程式碼

import java.util.*;
public class Main {
public static void main(String[] args) {
ArrayList strList = new ArrayList();
Scanner in = new Scanner(System.in);
while (true) {
String s = in.next();
if (!s.equals("!!end!!")) {
strList.add(s);
} else
break;
}
strList.add(0, “begin”);
strList.add(“end”);
System.out.println(strList);
String str = new String();
str = in.next();
System.out.println(strList.contains(str));
System.out.println(strList.indexOf(str));
System.out.println(strList.lastIndexOf(str));
System.out.println(strList.get(0));
strList.remove(0);
System.out.println(strList);
str = in.next();
strList.set(1, str);
System.out.println(strList);
ArrayList strList1 = new ArrayList();
str = in.next();
in.close();
for (int j = 0; j < strList.size(); j++) {
if (strList.get(j).contains(str)) {
strList1.add(strList.get(j));
}
}
System.out.println(strList1);
strList.remove(str);
System.out.println(strList);
strList.clear();
System.out.println(strList + “,” + strList.size() + “,”
+ strList.isEmpty());
}
}