一、直接选择排序 #include <iostream> using namespace std; void print_array(int a[], int n) { for(int i = 0; i < n; i++) cout << a[i] << " " ; cout << endl; } Read More
posted @ 2019-04-24 19:51 Brickert Views(324) Comments(0) Diggs(0) Edit