我是java新手。
我正在尝试使用 ArrayList 对 String 数组的 ArrayList 进行排序String.compareTo()
。
我已经编译了代码,因此输出为:
因果关系是一种关系
它,是,也,被称为,因果
它是关于一个原因和它的影响
现在我想对该代码进行排序(按字典顺序),因此输出为:
因果关系,a,is,关系
它也称为因果是
它,一个,关于,影响,和,原因,是,它
但是我正在产生一些疯狂的输出。
我的代码如下。
任何帮助,将不胜感激。
我已经为这个可能非常简单的问题工作了几个小时,我准备毁掉我的电脑。谢谢
public class Wk5Q5 {
void process1 () {
String s1 = "Causality is a relationship";
String s2 = "It is also called causation";
String s3 = "It is about a cause and its affect";
ArrayList<String[]> list = new ArrayList<String[]>();
String[] arr1 = s1.split(" ");
list.add(arr1);
String[] arr2 = s2.split(" ");
list.add(arr2);
String[] arr3 = s3.split(" ");
list.add(arr3);
/**
* previously sorted the arraylist of string arrays so that
* each word is separated by commas
*/
for(int i = 0; i < list.size(); i++){
for (int j = 0; j < list.get(i).length; j++){
String t = list.get(i)[j];
if (j > 0){
t = ", " + t;
}
System.out.print(t);
//System.out.println(list.get(i)[j]);
}
System.out.println();
}
/**
* my attempt at sorting each string in each list
*/
for(int z = 0; z < list.size(); z++){
for(int i = 0; i < list.get(z).length; i++){
String x = list.get(z)[i];
for (int j = i+1; j < list.get(z).length; j++){
String y = list.get(z)[j];
if(y.compareTo(x) < 0) {
String temp = list.get(z)[i];
x = list.get(z)[j];
y = temp;
}
System.out.print(x);
}
}
}
}