我想在C#中手动排序2D数组。 当指针在索引0上并且我需要转到上一行时,我很困惑该怎么做。 当我到达索引0时我的问题我不能再进一步了,然后它出界了。
int temp3 = 25;
bool swap = false;
bool swap2 = false;
long pointer = productarray[4,4];
for(int i = 4; i >= 0; i--){
for(int j = 4; j >= 0; j--){
int temp5 = 1;
while(swap != true){
if(temp3 != temp5){
pointer = productarray[i,j];
if (pointer < productarray [i, j - temp5]) {
long temporary = productarray [i, j];
productarray [i, j] = productarray [i, j - temp5];
productarray [i, j - temp5] = temporary;
temp5 = 1;
} else {
temp5++;
}
}
else{
swap = true; //Current pointer is the greatest int
temp3--;
}
}
swap = false;
}
}
答案 0 :(得分:0)
像这样的东西
var myOrderedRows = myArray.OrderBy(row => row[columnIndex]);