2

试图在 code::blocks 中打开一个 .cpp。有几行错误

部分代码:

void QSort(string List[], int Left, int Right)
{
  int i, j;
  char *x;
  string TEMP;

  i = Left;
  j = Right;
  x = List[(Left+Right)/2];

  do {
    while((strcmp(List[i],x) < 0) && (i < Right)) {
       i++;
    }
    while((strcmp(List[j],x) > 0) && (j > Left)) {
        j--;
    }
    if(i <= j) {
      strcpy(TEMP, List[i]);
      strcpy(List[i], List[j]);
      strcpy(List[j], TEMP);
      i++;
      j--;
   }
  } while(i <= j);

  if(Left < j) {
     QSort(List, Left, j);
  }
  if(i < Right) {
     QSort(List, i, Right);
  }
}

我在线收到此错误

 x = List[(Left+Right)/2];

不能在赋值中将 'std::string {aka std::basic_string}' 转换为 'char*'|

4

1 回答 1

3

因为它们不兼容。您需要调用std::string返回 a的成员const char*

x = List[(Left+Right)/2].c_str();

请注意:此指针仅在 std::string 的生命周期内或在您修改字符串对象之前有效。

此函数返回 a const char*,因此您需要将xfrom的定义更改char*为 `const char*。

const char* x;

或者更好的是,删除那条线,然后将两者结合起来

void QSort(string List[], int Left, int Right)
{
    string TEMP;

    int i = Left;
    int j = Right;
    const char* x = List[(Left+Right)/2];

事实上,这是一个使用标准 C++ 算法的重写(std::string::compare 而不是 strcmp)。这可能使您更容易专注于算法本身。

void QSort(string List[], int Left, int Right)
{
    int i = Left;
    int j = Right;
    const int mid = (Left+Right) / 2;

    for (;;) // repeat until we break.
    {
        // write both comparisons in terms of operator <
        while (List[i].compare(List[mid]) < 0 && i < Right)
            ++i;
        while (List[mid].compare(List[j]) < 0 && Left < j)
            --j;
        // if i == j then we reached an impasse.
        if (i >= j)
            break;
        std::swap(List[i], List[j]);
    }

  if(Left < j)
    QSort(List, Left, j);

  if(i < Right)
    QSort(List, i, Right);
}
于 2013-11-02T04:56:09.200 回答