我是初学者程序员并试图让这个代码工作:
#include <iostream>
#include <vector>
using namespace std;
template <typename T>
T min(vector<T>vec) {
T x=vec[0];
int index;
for (int i=0; i<vec.size(); i++) {
if (vec[i]<x) { x=vec[i]; index=i; }
}
return index;
}
template <typename T>
void printVec (vector<T>v) {
for (int i=0; i<v.size(); i++)
cout<<v[i]<<endl;
}
template <typename T>
void selectSort(vector<T>&first) {
vector<T>second;
while(first.size()!=0) {
second.push_back(first[min(first)]);
first.erase(first.begin()+min(first));
}
first=second;
}
int main() {
int Mas[] = { 7, 15, 14, 12, 99, 180, 197, 567, 123, -101, 32, 144, 156, 177, 4, -17, -88, 18, 99, 143, -90 };
int dim = sizeof(Mas)/sizeof(int);
vector<int>v (&Mas[0], &Mas[dim]);
int m=min(v);
selectSort(v);
printVec(v);
cin.get();
return 0; }
由于某些原因,
while(first.size()!=0) {
循环似乎不起作用。有人可以帮忙吗?对不起,我的英语不好。