题解 | #单词倒排#

单词倒排

https://www.nowcoder.com/practice/81544a4989df4109b33c2d65037c5836

#include <stdio.h>
#include<string.h>
int main() {
    char std[10001] = { 0 };
    fgets(std, 10001, stdin);
    char word = 0;
    int i = 0;
    int len= strlen(std);
    int j = len-1;
    for(i=len-1;i>=0;i--)
    {
        if (std[i] < 'A'|| std[i] > 'Z'&& std[i] <'a' || std[i] > 'z')
        {
            std[i] =0;
        }
        if (std[i] == 0 && std[i + 1]!= 0)
        {
            int m = i + 1;
            for (m; m < j; m++)
            {
                printf("%c", std[m]);
            }
            printf(" ");
            j = i;
        }
        else if (std[i] == 0 && std[i + 1]== 0)
        {
            j = i;
        }
    }
    for (i = 0; i < j; i++)
    {
        printf("%c", std[i]);
    }
    printf("\n");
    return 0;
}

全部评论

相关推荐

人力小鱼姐:实习经历没有什么含金量,咖啡店员迎宾这种就别写了,其他两段包装一下 想找人力相关的话,总结一下个人优势,结合校园经历里有相关性的部分,加一段自我评价
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务