我在尝试从 C++ 库中找出 sort 函数并尝试从 az 中对这个字符串数组进行排序时遇到了很多麻烦,请帮助!
我被告知要使用它,但我无法弄清楚我做错了什么。
// std::sort(stringarray.begin(), stringarray.end());
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main()
{
int z = 0;
string name[] = {"john", "bobby", "dear",
"test1", "catherine", "nomi",
"shinta", "martin", "abe",
"may", "zeno", "zack", "angeal", "gabby"};
sort(name[0],name[z]);
for(int y = 0; y < z; y++)
{
cout << name[z] << endl;
}
return 0;
}