题解 | #C++选择排序#
C++选择排序
https://www.nowcoder.com/practice/3b6175426e704c0b9461628b2278631b
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
int main() {
int a;
vector<int> list;
for (int i = 0; i < 6; i++) {
cin >> a;
list.push_back(a);
}
for (int i = 0; i < 5; i++) {
for (int j = i + 1; j < 6; j++ ) {
if (list[i] > list[j]) {
int temp = list[j];
list[j] = list[i];
list[i] = temp;
}
}
}
int arr[6] = {0};
for (int i = 0; i < list.size(); i++) {
arr[i] = list[i];
cout << arr[i] << " ";
}
}
// 64 位输出请用 printf("%lld")
//数组法
int main() {
int arr[6] = { 0 };
int len = sizeof(arr) / sizeof(int);
for (int i = 0; i < len; i++) {
cin >> arr[i];
}
// write your code here......
for (int i = 0; i < len; i++) {
for (int j = i + 1; j < len; j++) {
if (arr[j] < arr[i]) {
int t = arr[j];
arr[j] = arr[i];
arr[i] = t;
}
}
}
for (int i = 0; i < len; i++) {
if (i == (len - 1)) {
cout << arr[i] << endl;
} else {
cout << arr[i] << " ";
}
}
return 0;
}


查看1道真题和解析