好程序員大數據教程分享實用的大數據之數組java
數組是一個容器, 是一個用來存儲指定數據類型的容器
注意事項:程序員
1. 數組是一個定長的容器, 一旦實例化完成, 長度不能修改數組
名詞解釋:大數據
1. 數組長度: 指的就是這個容器的容量, 表示這個數組中能存儲多少個數據
2. 元素: 指的就是數組中存儲的數據
3. 下標: 某一個元素在數組中的一個位置索引
4. 遍歷數組: 依次獲取到數組中的每個元素code
數組的元素訪問排序
經過下標來訪問的, 數組中元素的下標是從0開始的教程
數組中元素的下標: [0, 數組.length - 1]索引
注意:內存
在訪問數組中元素的時候, 注意下標的範圍, 不要越界!!!for循環
遍歷數組:
1. 使用循環遍歷下標的方式
`
java
int[] array = {1, 2, 3};
for (int index = 0; index < array.length; index++) {
System.out.println(array[index]);
}
`
2. 使用加強for循環
`
java
int[] array = {1, 2, 3};
for (int ele : array) {
System.out.println(ele);
}
`
選擇排序
固定一個下標, 而後用這個下標對應的元素依次和後面每個下標的元素進行比較
int[] array = {1, 3, 5, 7, 9, 0, 8, 6, 4, 2}; for (int index = 0; index < array.length - 1; index++) { for (int compare = index + 1; compare < array.length; compare++) { if (array[index] < array[compare]) { int temp = array[index]; array[index] = array[compare]; array[compare] = temp; } } }
冒泡排序
依次比較數組中兩個相鄰的元素
int[] array = {1, 3, 5, 7, 9, 0, 8, 6, 4, 2}; for (int i = 0; i < array.length; i++) { for (int j = 0; j < array.length - 1 - i; j++) { if (array[j] < array[j + 1]) { int temp = array[j]; array[j] = array[j + 1]; array[j + 1] = temp; } } }
從一個數組中查詢指定的元素出現的下標
1. 順序查找
2. 二分查找