以下是一個使用C++實現ASCII碼排序的示例代碼:
#include <iostream>
#include <algorithm>
int main() {
std::string str = "hello world";
// 使用std::sort函數對字符串進行ASCII碼排序
std::sort(str.begin(), str.end());
// 輸出排序后的字符串
std::cout << "Sorted string: " << str << std::endl;
return 0;
}
在上面的代碼中,我們使用std::sort
函數對字符串str
進行ASCII碼排序。最終輸出的結果將會是按照ASCII碼順序排列的字符串。