題目連結 http://zerojudge.tw/ShowProblem?problemid=a104。
雖然排序演算法有很多種,C++也有內建的函數,所以直接用內建函數 sort 來解,其他排序演算法可參考 Python 排序演算法範例 一文。
程式碼:
#include <iostream>
#include <algorithm>
using namespace std;
int main(int argc, char** argv) {
int n;
while(cin >> n)
{
int data[n];
for(int i = 0; i < n; i++)
cin >> data[i];
sort(data, data+n);
for(int i = 0; i < n; i++)
cout << data[i] << " ";
cout << endl;
}
return 0;
}
沒有留言:
張貼留言