public static void spaceToTime(int[] array) {
int i =
int max = array[
int l = array
for (i =
if (array[i] > max) //找出最大值
max = array[i];
int[] temp = new int[max +
for (i =
temp[array[i]] = array[i]; //以索引下標來標識數字大小
int j =
int maxmax
for (i =
if (temp[i] >
array[j++] = temp[i];
}
}
}
}
上例中
在本例中
Arrays
spaceToTime spend:
可以看到
返回目錄
編輯推薦
Java程序設計培訓視頻教程
J
J
Visual C++音頻/視頻技術開發與實戰
Oracle索引技術
ORACLE
[
From:http://tw.wingwit.com/Article/program/Java/gj/201311/27787.html