0

我正在尝试通过交换指针对 char 指针数组(char * _string)进行排序。

我有这个方法,我想做的是使用我从 _string 获得的值并通过不操作 _string 对它们进行排序,但我也将其交给该方法的空辅助数组(char * _output)。

谁能帮助我并告诉我我做错了什么?

void sortAsc(char* _string, char* _output) 
{

    int length = strlen(_string);

        // output and string now point to the same area in the memory
    _output = _string; 

    for( int i = 0; i < length; i++) {
          for( int j = 0; j < length; j++) {
                if( *(_output) > (_output[j] ) ) {

                    // save the pointer
                    char* tmp = _output;

                    // now output points to the smaller value   
                    _output = _output+j; 

                    // move up the pointer to the smaller value
                    _output + j; 

                    // now the pointer of the smaller value points to the higher value
                    _output = tmp; 

                    // move down to where we were + 1
                    _output - j + 1; 

            }
        }
    }

    //_output[length]='\0';

    //delete chars;
 }

在我的主要方法中,我做了这样的事情:

char * string = {"bcdae"};
char * output = new char[5];
sortAsc(string, output);

在该代码之后,我希望输出数组包含排序值。

4

2 回答 2

0

这会将字符串排序到已分配的缓冲区中,如果缓冲区不够大,则会告诉您它必须有多大:

std::size_t sortAsc(char const* string, char* dest, std::size_t dest_length) {
  std::size_t str_length = strlen(string);
  char const* str_end = string + str_length;
  if (dest_length < str_length+1)
    return str_length+1;
  std::copy( string, str_end, output );
  output[str_length] = '\0';
  std::sort( output, output+strlen(output) );
  return str_length+1;
}

使用上面的实现,这是糟糕的“分配一个新字符串”模式:

char* allocate_and_sortAsc(char const* string) {
  std::size_t str_length = strlen(string);
  char* retval = new char[str_length+1];
  std::size_t count = sortAsc( string, retval, str_length+1);
  ASSERT( count <= str_length );
  return retval;
}

并且不要使用以 开头的变量名_,这是一种不好的做法,因为它确实在编译器保留名称附近徘徊。 _Capital在任何地方、_lower在全球范围内、在任何地方都保留foo__bar

于 2012-11-22T22:03:30.540 回答
0

让我们使用指针表示法对 10 大小的 int 数组进行选择排序,您可以简单地将其更改为数组列表。

      *---*---*---*---*---* ........
a[] = | 1 | 2 | 4 | 0 | 3 | ........
      *---*---*---*---*---* ........
        ^--------We start here looking for the smaller numbers and sort the array.


for( i = 0; i < 10; i++ ){
    k = i;
    bypass = *( a + i );
    for( j = i + 1; j < 10; j++ ){

        /* To get Increasing order. */
        if( bypass > *( a + j ) ){
           bypass = *( a + j );
           k = j;
        }
    }
    if ( k != i ){
         *( a + k ) = *( a + i );
         *( a + i ) = bypass;
    }
}
于 2012-11-23T10:20:00.993 回答