博客
关于我
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/

    你可能感兴趣的文章
    Postman还能做Mock?又学了一招!
    查看>>
    Postman还能做Mock?又学了一招!
    查看>>
    postman进行http接口测试
    查看>>
    Postman高阶技能:Collection集合批量运行!
    查看>>
    postMessage跨标签页共享数据
    查看>>
    QImage对一般图像的处理
    查看>>
    post为什么会发送两次请求?
    查看>>
    Post表单提交TextArea的值出现转译乱码问题 - Spring MVC处理表单提交
    查看>>
    Power BI 中的 Python 可视化需要什么设置?任何特定的 matplotlib 包版本或系统设置?
    查看>>
    Power BI:如何在 Power Query 编辑器中将 Python 与多个表一起使用?
    查看>>
    power english (3) main text -emotion mastery - focus
    查看>>
    POWER ENGLISH (6) - MODEL
    查看>>
    power english (1) —— passion
    查看>>
    Power English (1) 原文
    查看>>
    power English (3)原文
    查看>>
    POWER ENGLISH(7)- repetition
    查看>>
    SpringBoot中集成SpringBatch详细解析与实战示例(CSV文件读取十万条数据进行业务处理后写入Mysql数据库)
    查看>>
    powerbi 一张表在另外一张表中出现的数量_PowerBi之初步学习笔记
    查看>>
    QGIS怎样设置简体中文以及新建可编辑的多边形的图层
    查看>>
    PowerBuilder 使用自定义事件触发键盘Enter事件
    查看>>