gpt4 book ai didi

C++ 排序字符串数组

转载 作者:IT老高 更新时间:2023-10-28 22:06:31 25 4
gpt4 key购买 nike

我正在尝试对字符串数组进行排序,但它没有对任何内容进行排序......我做错了什么?

string namesS[MAX_NAMES];

int compare (const void * a, const void * b){
return ( *(char*)a - *(char*)b );
}


void sortNames(){

qsort(namesS, MAX_NAMES, sizeof(string), compare);
}

最佳答案

这是 C++,而不是 C。对字符串数组进行排序很容易。

#include <string>
#include <vector>
#include <algorithm>

std::vector<std::string> stringarray;
std::sort(stringarray.begin(), stringarray.end());

关于C++ 排序字符串数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2803071/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com