博客
关于我
1009 说反话 (PAT)
阅读量:507 次
发布时间:2019-03-07

本文共 1140 字,大约阅读时间需要 3 分钟。

这里有一个简单的C程序,能够将输入的英语句子中的单词顺序颠倒:

#include 
#include
#include
int main() { char str[100]; int s, p, e, j, i; gets(str); s = strlen(str); p = s; // 分割单词并存储到数组words中 char *words = malloc(p * sizeof(char)); words[0] = '\0'; int word_count = 0; for (i = s - 1; i >= 0; i--) { if (str[i] == ' ') { if (word_count > 0) { words[word_count] = '\0'; word_count++; } j = i + 1; while (j < s && str[j] != ' ') { j++; } for (k = 0; k < j - i - 1; k++) { words[word_count + k] = str[i + 1 + k]; } words[word_count] = '\0'; word_count++; } else { // 非空格字符,直接加入当前单词 if (i > p) { // 展示扩展字符串的处理 // (在实际应用中,应先展开发商提供的动态内存分配方法) } } } if (word_count > 0) { // 输出倒序的单词 printf("%s", words); } free(words); return 0;}

这个程序的工作流程是:

  • 读取输入字符串
  • 逆序遍历字符串,识别并统计单词
  • 将发现的单词倒转排列
  • 输出倒序后的句子
  • 如果需要处理更复杂的文本处理需求,可以考虑使用更专业的文本处理库或工具。

    转载地址:http://ajojz.baihongyu.com/

    你可能感兴趣的文章
    python进阶(1):json的使用
    查看>>
    python ETL工具 pyetl
    查看>>
    Python eval 函数说明
    查看>>
    python eval简介
    查看>>
    python excel 饼图 简书_Python实现绘画多个饼图
    查看>>
    python excel接口自动化测试框架!
    查看>>
    Python exec 函数解析:探索动态代码执行的无限可能!
    查看>>
    Python EXEC和__NAME__
    查看>>
    Python exe文件打包神器-Nuitka!
    查看>>
    python file
    查看>>
    Python FileDialog获取文件夹路径不是文件
    查看>>
    python filter过滤器的使用_python基础知识分享:zip()、filter函数和reduce如何使用?...
    查看>>
    python flask 请求code 400, message Bad request version
    查看>>
    Python Flink Stateful函数入口上的Kafka键访问
    查看>>
    Python float - str - 浮动怪异
    查看>>
    Python Flower库:分布式任务管理与监控
    查看>>
    Python for 循环和迭代器行为
    查看>>
    Python For循环多次返回
    查看>>
    python frame_python3 selenium自动化 frame表单嵌套的切换方法
    查看>>
    Python ftplib - 指定端口
    查看>>