提交 a7a6e38c 编写于 作者: 辉哈's avatar 辉哈

更新选择排序

上级 9c123ec7
// 冒泡排序
void BubbleSort(vector<int>& v) {
int temp;
for (int i = 0; i < v.size() - 1; ++i) {
......
// 冒泡排序(跳过有序的改进版)
// 冒泡排序(改进版)
void BubbleSort_orderly(vector<int>& v) {
int temp;
bool orderly = false;
for (int i = 0; i < v.size() - 1 && !orderly; ++i) {
orderly = true;
for (int j = 0; j < v.size() - 1 - i; ++j) {
if (v[j] > v[j + 1])
{
orderly = false;
if (v[j] > v[j + 1]) { // 从小到大
orderly = false; // 发生交换则仍非有序
temp = v[j];
v[j] = v[j + 1];
v[j + 1] = temp;
......
// 选择排序
void SelectionSort(vector<int>& v) {
int min, temp;
for (int i = 0; i < v.size() - 1; ++i) {
min = i;
for (int j = i + 1; j < v.size(); ++j) {
if (v[j] < v[min]) { // 标记最小的
min = j;
}
}
if (i != min) { // 交换到前面
temp = v[i];
v[i] = v[min];
v[min] = temp;
}
}
}
\ No newline at end of file
......@@ -43,7 +43,8 @@
### 排序
* [冒泡排序](Algorithm/BubbleSort.h)
* [冒泡排序(跳过有序的改进版)](Algorithm/BubbleSort_orderly.h)
* [冒泡排序(改进版)](Algorithm/BubbleSort_orderly.h)
* [选择排序](Algorithm/BubbleSort_orderly.h)
## Problems
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册