3 5 6 C 陣列遍歷

2022-09-15 22:24:25 字數 759 閱讀 9228

遍歷二維陣列的三種方式

#include#include#includeusing namespace std;

int main();

for(int cow = 0; cow < 3; cow++)

for(int col = 0; col < 4; col++)

map[cow][col] = cow+col;

//第一種方法:範圍for【外層for必須要用引用,否則cow會被轉換為指標,而指標不支援內層的範圍f】

cout<<"the first version : use range for"

cout

cout<<"the second version : use for loop by subscript"

cout

cout<<"the third version : ues for loop by pointers"

cout

cout<<"we can also write it like this"

cout<}

陣列三 訪問遍歷 c

四.訪問數組成員 訪問陣列成員可以直接進行.4 1.一維陣列的訪問.例如 int numbers numbers 4 5 4 2.多維陣列的訪問.例如 int numbers numbers 3,2 5 4 3.交錯陣列的訪問.例如 int numbers new int new int 它包含兩個...

js 陣列遍歷 物件遍歷

一 陣列遍歷 1,普通for迴圈,經常用的陣列遍歷 var arr 1,2,0,3,9 for var i 0 i 2,優化版for迴圈 使用變數,將長度快取起來,避免重複獲取長度,陣列很大時優化效果明顯 for var j 0,len arr.length j len j 3,foreach,es...

陣列反向遍歷ios iOS開發 遍歷陣列

nsdictionary dictionary1 nsdictionary alloc initwithobjectsandkeys value0 key0 value1 key1 value2 key2 value3 key3 value4 key4 value4 key5 nil nslog d...