First Update

This commit is contained in:
huihut
2018-02-09 21:47:58 +08:00
commit 6b742a5393
11 changed files with 298 additions and 0 deletions

14
Algorithm/BubbleSort.h Normal file
View File

@@ -0,0 +1,14 @@
// 冒泡排序
void BubbleSort(vector<int>& v) {
int temp;
for (int i = 0; i < v.size() - 1; ++i) {
for (int j = 0; j < v.size() - 1 - i; ++j) {
if (v[j] > v[j + 1]) { // 从小到大
temp = v[j];
v[j] = v[j + 1];
v[j + 1] = temp;
}
}
}
}