摘要: 下面是一个冒泡排序,是在swap代码的基础上发展而来的,这应该是最简单的排序了吧,但同时也是效率最低的一个了吧: #include <iostream> using namespace std;void bubblesort(int list[],int n);int main(){int a[]= 阅读全文
posted @ 2020-02-17 16:53 清风沐竹 阅读(252) 评论(0) 推荐(0)
摘要: swap交换:swap是几乎所有的排序的最基础部分,代码如下: #include <iostream> using namespace std; int main(){int a,b,tmp;a=1;b=10;cout <<"a="<< a<<",b="<<b<< endl;tmp=a;a=b;b= 阅读全文
posted @ 2020-02-17 10:47 清风沐竹 阅读(835) 评论(0) 推荐(0)