谢谢
解决方法 您可以创建自定义比较函数以与std :: sort一起使用.此函数必须检查字符串是否以数字值开头.如果是这样,使用像stringstream这样的机制将每个字符串的数字部分转换为int.然后比较两个整数值.如果值相等,则按字典顺序比较字符串的非数字部分.否则,如果字符串不包含数字部分,只需按字典顺序比较两个字符串即可.基本上,类似于以下(未经测试的)比较功能:
bool is_not_digit(char c){ return !std::isdigit(c);}bool numeric_string_compare(const std::string& s1,const std::string& s2){ // handle empty strings... std::string::const_iterator it1 = s1.begin(),it2 = s2.begin(); if (std::isdigit(s1[0]) && std::isdigit(s2[0])) { int n1,n2; std::stringstream ss(s1); ss >> n1; ss.clear(); ss.str(s2); ss >> n2; if (n1 != n2) return n1 < n2; it1 = std::find_if(s1.begin(),s1.end(),is_not_digit); it2 = std::find_if(s2.begin(),s2.end(),is_not_digit); } return std::lexicographical_compare(it1,it2,s2.end());}
然后…
std::sort(string_array.begin(),string_array.end(),numeric_string_compare);
编辑:当然,这个算法只有在排序数字部分出现在字符串开头的字符串时才有用.如果你正在处理数字部分可以出现在字符串中任何位置的字符串,那么你需要一个更复杂的算法.有关更多信息,请参见http://www.davekoelle.com/alphanum.html.
总结以上是内存溢出为你收集整理的c – 对带有数字的std :: strings进行排序?全部内容,希望文章能够帮你解决c – 对带有数字的std :: strings进行排序?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)