李振良Python DevOps運(yùn)維開(kāi)發(fā)實(shí)戰(zhàn)集訓(xùn)營(yíng)高級(jí)班
C語(yǔ)言實(shí)現(xiàn):
void selectAlgorithm(int array[]){
?int count = sizeof(array)/sizeof(int);
?int index;
?for (int i = 0; i < count - 1; i ++) {
? ? ?index = i;
? ? ?for (int j = i + 1; j < count; j ++) {
? ? ? ? ?if (array[index] > array[j]) {
? ? ? ? ?index = j;
? ? ?}
?}
?if (index != i) {
? ? ?int temp = array[i];
? ? ?array[i] = array[index];
? ? ?array[index] = temp;
? ?}
?}}
?
標(biāo)簽: