如何逐字颠倒句子?

How to Reverse a sentence word by word?

我试图逐字颠倒一个句子。 (你好吗 -> 你好吗)首先,我创建了一个 char 句子并反向和临时。用户给出的句子要反转。 Temp 捕获单词以更改 sentence.Then 中的位置 我使用 strcat 来连接每个单词。这就是问题所在。我可以找到已发送(接受输入)结尾的单词,但是当我尝试连接以反转时,它将这个单词添加到句子中并发生错误。有什么问题?

#define _CRT_SECURE_NO_WARNINGS

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

char* subs(char* temp, char* src, int start, int end);


int main() {

    char sent[15]; //input sentence
    char rev[15];  // output sentence

    char *temp=(char*)calloc(1,sizeof(char)); //for the word

    scanf(" %[^\n]%*c", &sent);  // takin' input


    int i, end, start;
    i = strlen(sent);


    //find the beggining and ending of the indexes of the word in sentence
    while (i > 0) {     
        while (sent[i] == ' ') {
            i--;
        }
        end = i-1;
        while (sent[i] != ' ') {
            i--;
        }
        start = i + 1;

        //add the word to temp and concatenate to reverse

        temp=subs(temp, sent, start, end);

        strncat(rev, temp,end-start+3);



    }
    rev[strlen(sent)] = '[=10=]';
    printf("%s", rev);


    return 0;
}

char* subs(char* temp, char* src, int start, int end) {
    int i = 0, control;
    // resize the temp for the wırd
    temp = (char*)realloc(temp,end-start+3);

    for (; i < (end - start) + 1; i++) {
        control = (start + i);
        temp[i] = src[control];

    }
    //adding blank and null character to end of the word.
    temp[i] = ' ';
    temp[++i] = '[=10=]';

    return temp;

}

我会从这个尚未关闭的问题中复制我的好答案 在 C 中反转一个没有 strtok 的字符串 。所以我不能使用这个参考来关闭你的问题。

标准方法是反转字符串中的每个单词,然后反转整个字符串。

标准 C 函数 strtok 不适用于这种情况。而是使用标准 C 函数 strspnstrcspn.

给你。

#include <stdio.h>
#include <string.h>

static char * reverse( char *s, size_t n )
{
    for ( size_t i = 0; i < n / 2; i++ )
    {
        char c = s[ i ];
        s[ i ] = s[ n - i - 1 ];
        s[ n - i - 1 ] = c;
    }

    return s;
}

char * reverse_by_words( char *s )
{
    const char *delim = " \t";

    char *p = s;

    while ( *p )
    {
        p += strspn( p, delim );

        if ( *p )
        {
            char *q = p;

            p += strcspn( p, delim );

            reverse( q, p - q );
        }
    }

    return reverse( s, p - s );
}

int main(void) 
{
    char s[] = "5 60 +";

    puts( s );

    puts( reverse_by_words( s ) );

    return 0;
}

程序输出为

5 60 +
+ 60 5

如果您想保留原始字符串中的前导空格和尾随空格,则函数可以采用以下方式

#include <stdio.h>
#include <string.h>

static char *reverse( char *s, size_t n )
{
    for ( size_t i = 0; i < n / 2; i++ )
    {
        char c = s[i];
        s[i] = s[n - i -1 ];
        s[n - i - 1] = c;
    }

    return s;
}

char * reverse_by_words( char *s )
{
    const char *delim = " \t";

    char *first = s, *last = s;

    for ( char *p = s;  *p; )
    {
        p += strspn( p, delim );

        if ( last == s ) first = last = p;


        if ( *p )
        {
            char *q = p;

            p += strcspn( p, delim );

            last = p;

            reverse( q, p - q );
        }
    }

    reverse( first, last - first );

    return s;
}

int main(void) 
{
    char s[] = "\t\t\t5 60 +";

    printf( "\"%s\"\n", s );

    printf( "\"%s\"\n", reverse_by_words( s ) );

    return 0;
}

程序输出为

"           5 60 +"
"           + 60 5"