image.png

    1. #include <iostream>
    2. #include <string>
    3. //算法函数库,用到了排序
    4. #include <algorithm>
    5. using namespace std;
    6. bool cmp(string a,string b)
    7. {
    8. return (a < b);
    9. }
    10. int main()
    11. {
    12. int n;
    13. cin >> n;
    14. string str[1000];
    15. for (int i = 0; i < n; i++)
    16. {
    17. cin >> str[i];
    18. }
    19. //排序函数,对字符串进行排序,cmp函数指明排序方向(从小到大)
    20. sort(str, str + n,cmp);
    21. for (int i = 0; i < n; i++)
    22. {
    23. cout << str[i] << endl;
    24. }
    25. }