forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSolution.cpp
More file actions
35 lines (29 loc) · 762 Bytes
/
Solution.cpp
File metadata and controls
35 lines (29 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#include <iostream>
#include <vector>
using namespace std;
void printvec(const vector<int>& vec, const string& strbegin = "", const string& strend = "") {
cout << strbegin << endl;
for (auto val : vec) {
cout << val << "\t";
}
cout << endl;
cout << strend << endl;
}
void selectsort(vector<int>& vec) {
for (int i = 0; i < vec.size() - 1; i++) {
int minidx = i;
for (int j = i + 1; j < vec.size(); j++) {
if (vec[minidx] > vec[j]) {
minidx = j;
}
}
swap(vec[i], vec[minidx]);
}
}
int main(void) {
vector<int> vec = {9, 8, 7, 6, 5, 4, 3, 2, 1, 0};
printvec(vec);
selectsort(vec);
printvec(vec, "after insert sort");
return (0);
}