我正在对二维数组进行排序,但遇到了一些问题。当我排序时,它开始对第一对夫妇起作用并且没有完成。这是我的代码,然后我将发布我的输出。sectionArray[] 的第一部分包含 2 个部分。在 sectionArray[][] 的第二部分包含不同的学生对象。我需要为每个部分按字母顺序对这些对象的字符串名称进行排序。
public void sortByName(){
String temp;
for(int i = 0; i < 2; i++){
for (int a = 0; a < sectionArray[i].length-1; a++){
if (sectionArray[i][a].getName().compareToIgnoreCase(sectionArray[i][a+1].getName()) > 0){
temp = sectionArray[i][a].getName();
sectionArray[i][a].setName(sectionArray[i][a+1].getName());
sectionArray[i][a+1].setName(temp);
}
}
}
}
输出:
Progress Report
Section 1
Johnson 90.6 A
Aniston 81.2 B
Cooper_ 82.2 B
Gupta__ 72.2 C
Blair__ 52.2 F
Section 2
Clark__ 59.2 F
Kennedy 63.4 D
Bronson 90.0 A
Sunny__ 84.8 B
Smith__ 75.4 C
Diana__ 68.8 D
AFTER SORTING THE 2D ARRAY
Progress Report
Section 1
Aniston 90.6 A
Cooper_ 81.2 B
Gupta__ 82.2 B
Blair__ 72.2 C
Johnson 52.2 F
Section 2
Clark__ 59.2 F
Bronson 63.4 D
Kennedy 90.0 A
Smith__ 84.8 B
Diana__ 75.4 C
Sunny__ 68.8 D