摘要: 1 #include <iostream> 2 #include <vector> 3 4 using namespace std; 5 6 vector<int> selectSort(vector<int> arr){ 7 8 for(vector<int>::iterator i = arr. 阅读全文
posted @ 2020-02-22 16:22 xuecl 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 1 #include <bits/stdc++.h> 2 using namespace std; 3 4 void bubbleSort(int a[],int n){ 5 for(int i=0;i<n;i++){ 6 for(int j=0;j<n;j++){ 7 if(a[j]>a[j+1] 阅读全文
posted @ 2020-02-22 16:18 xuecl 阅读(130) 评论(0) 推荐(0) 编辑