可以使用標準庫中的sort函數對n個數據進行從小到大排序。
#include <algorithm> // 包含sort函數的頭文件
#include <vector> // 包含vector容器的頭文件
int main() {
int n = 10; // 假設有10個數據
std::vector<int> nums = {5, 3, 9, 1, 4, 8, 2, 7, 6, 0}; // 假設這是數據集合
std::sort(nums.begin(), nums.end()); // 使用sort函數對容器中的數據進行排序
for (int i = 0; i < n; i++) {
std::cout << nums[i] << " "; // 輸出排序后的數據
}
return 0;
}
運行結果為:0 1 2 3 4 5 6 7 8 9,表示數據從小到大排序的結果。