0

我有一个字符串向量:vectorElements 我想创建一个 *char 向量来指向每个字符串的开头。我的目标是能够逐个字符地遍历每个字符串。最终,我想对字符串向量进行排序。注意:字符串可能包含整数值。在这种情况下,我将根据它们的数值进行排序。

4

2 回答 2

2

如果您使用 C++ 编写,最好使用 C++string而不是char. 您仍然可以通过获取迭代器来遍历每个字符 with 并在迭代器上begin()使用重载运算符++遍历到下一个字符(检查返回的迭代器end()以了解您是否到达字符串的末尾)。您还可以使用重载 operator 以 C 风格引用字符串中的字符[]

因此,avector<string>可能是您所需要的。

要对字符串进行排序,您可能需要在标题中使用sort函数。algorithm由于您不是一直按词法对它们进行排序,因此您必须定义自己的函数来比较两个字符串。

比较的伪代码

while (i < str1.length() && i < str2.length())
  if (!isDigit(str1[i]) || !isDigit(str2[i]))
    // Lexical comparison
    if (str1[i] != str2[i])
      i++
    else
      return str1[i] < str2[i]
  else // If both are digits
    // parseInt will parse the number starting from current position
    // as positive integer
    // - It will consume as many characters as possible (greedily) and
    // return the parsed number plus the number of characters consumed
    // - If the number is very large (exceed 64-bit), you may want to 
    // only find the length of the number and write another
    // comparison function for big numbers.
    // The code below assumes no overflow
    (num1, len1) = parseInt(str1, i)
    (num2, len2) = parseInt(str2, i)
    if (num1 == num2)
      i += len1
    else
      return num1 < num2

if (str1.length() == str2.length())
  return false
else
  return str1.length() < str2.length()
于 2012-06-11T01:20:16.667 回答
0

您可以使用std::sort

for ( int i=0; i<vec.size(); ++i )
{
    std::string & str = vec[i];
    std::sort(str.begin(), str.end());
}

演示

于 2012-06-11T01:16:59.617 回答