我製作了一個程序來計算數組中的元素。它可以工作,但是在我的程序中有一些錯誤。計算數組中的元素
我希望我的程序的輸出是這樣的:
1發生:2倍
2發生:1times
3發生:1times
6發生:1times
但我的程序給出了一個的這樣的輸出:
1發生:1times
1發生:2倍
2發生:1times
3發生:1times
6發生:1times
String[] values= {"1", "1", "3", "6", "2"};
int[] counts = new int[values.length];
Arrays.sort(values);
int temp = 0;
int c = 0;
for(int i = 0; i < values.length; i++){
counts[i] = Integer.parseInt(values[i]);
for(int j = 0;j < counts.length; j++) {
if(counts[i] == counts[j]) {
c++;
}
}
System.out.println(counts[i] + " occured: " + c +" times");
c = 0;
}
您可以使用hashmap來做到這一點。 – vikiiii
看看http://stackoverflow.com/questions/8098601/java-count-occurrence-of-each-item-in-an-array :) – sufinawaz
請避免沒有大括號的statemts。 –