C //练习 6-4 编写一个程序,根据单词的出现频率按降序打印输入的各个不同单词,并在每个单词的前面标上它的出现次数。

C程序设计语言 (第二版) 练习 6-4

练习 6-4 编写一个程序,根据单词的出现频率按降序打印输入的各个不同单词,并在每个单词的前面标上它的出现次数。

注意:代码在win32控制台运行,在不同的IDE环境下,有部分可能需要变更。
IDE工具:Visual Studio 2010

 

代码块:
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
#include <limits.h>#define MAXWORD 1000
#define BUFSIZE 100
#define IN 1
#define OUT 0char buf[BUFSIZE];
int bufp = 0;struct tnode {char *word;int count;struct tnode *left;struct tnode *right;
};struct wnode {int number;struct words *words;struct wnode *left;struct wnode *right;
};struct words {char *word;struct words *next;
};int getch(void){return (bufp > 0) ? buf[--bufp] : getchar();
}void ungetch(int c){if(bufp >= BUFSIZE){printf("ungetch: too many characters\n");}else{buf[bufp++] = c;}
}int getword(char *word, int lim){int c;char *w = word;static int lineBeginning = 1; static int afterSlash = 0;int afterStar = 0;if(isspace(c = getch())){afterSlash = 0;}while(isspace(c)){if(c == '\n'){lineBeginning = 1;}c = getch();}if(c != EOF){*w++ = c;}if(c == '#' && lineBeginning == 1){while((c = getch()) != '\n' && c != EOF);return getword(word, lim);}lineBeginning = 0;if(c == '\\'){afterSlash = afterSlash ? 0 : 1;}else if(c == '/' ){if((c = getch()) == '*' && !afterSlash){while((c = getch()) != EOF){if(c == '/'){if(afterStar){return getword(word, lim);}}else if(c == '*' && !afterSlash){afterStar = 1;}else if(c == '\\'){afterSlash = afterSlash ? 0 : 1;}else{afterStar = 0;afterSlash = 0;}}}afterSlash = 0;if(c != EOF){ungetch(c);}}else if(c == '\"'){if(!afterSlash){--w;while((c = getch()) != EOF){if(c == '\"' && !afterSlash){break;}else if(c == '\\'){afterSlash = afterSlash ? 0 : 1;}else{afterSlash = 0;}*w++ = c;}*w = '\0';if(c == EOF){return EOF;}else{return getword(word, lim);}}afterSlash = 0;}if(!isalpha(c) && c != '_'){*w = '\0';if(c != '\\'){afterSlash = 0;}return c;}afterSlash = 0;for( ; --lim > 0; ++w){if(!isalnum(*w = getch()) && *w != '_'){ungetch(*w);break;}}*w = '\0';return word[0];
}struct tnode *talloc(void) {return (struct tnode *)malloc(sizeof(struct tnode));
}struct wnode *numwordalloc(void) {return (struct wnode *)malloc(sizeof(struct wnode));
}struct words *wordsalloc(void) {return (struct words *)malloc(sizeof(struct words));
}char *_strdup(char *s) {char *p;p = (char *)malloc(strlen(s) + 1);if(p != NULL){strcpy(p, s);}return p;
}void printwords(const struct words* w, const int count) {if (w != NULL) {printf("%4d\t%s\n", count, w->word);w = w->next;}
}void treeprint(const struct wnode *p) {if(p != NULL){treeprint(p->left);printwords(p->words, p->number);treeprint(p->right);}
}struct tnode *addtree(struct tnode *p, char *w) {int cond;if(p == NULL){p = talloc();p->word = _strdup(w);p->count = 1;p->left = p->right = NULL;}else if((cond = strcmp(w, p->word)) == 0){p->count++;}else if(cond < 0){p->left = addtree(p->left, w);}else{p->right = addtree(p->right, w);}return p;
}struct words *addword(struct words* list, char *w) {if(list == NULL){list = wordsalloc();list->word = _strdup(w);list->next = NULL;} else{list->next = addword(list->next, w);}return list;
}struct wnode *addwtree(struct wnode *p, int count, char* w) {if(p == NULL){p = numwordalloc();p->number = count;p->words = NULL;p->words = addword(p->words, w);}else if(count > p->number){p->left = addwtree(p->left, count, w);}else{p->right = addwtree(p->right, count, w);}return p;
}struct wnode *traverse(const struct tnode *p, struct wnode *q) {if(p != NULL){q = traverse(p->left, q);q = addwtree(q, p->count, p->word);q = traverse(p->right, q);}return q;
}int main() {struct tnode *root;struct wnode *wroot;char word[MAXWORD];root = NULL;wroot = NULL;while(getword(word, MAXWORD) != 'x')if(isalpha(word[0]))root = addtree(root, word);wroot = traverse(root, wroot);treeprint(wroot);return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/631982.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

vivado RTL运行方法检查、分析方法报告、报告DRC

运行方法检查 Vivado Design Suite提供基于超快设计的自动化方法检查使用“报告方法论”命令的FPGA和SoC&#xff08;UG949&#xff09;方法论指南。您可以生成关于打开、详细阐述、综合或实现的方法论报告设计对于详细设计&#xff0c;方法报告会检查XDC和RTL文件。对于有关使…

阿里云国外云服务器多少钱?2024年最新价格

阿里云国外服务器优惠活动「全球云服务器精选特惠」&#xff0c;国外服务器租用价格24元一个月起&#xff0c;免备案适合搭建网站&#xff0c;部署独立站等业务场景&#xff0c;阿里云服务器网aliyunfuwuqi.com分享阿里云国外服务器优惠活动&#xff1a; 全球云服务器精选特惠…

odoo 一日一技 系统参数 config_parameter

# 基础介绍 在Odoo中&#xff0c;ir.config_parameter是一个特殊的模型&#xff0c;它用于存储全局配置参数。这些参数是全局的&#xff0c;可以在任何地方访问&#xff0c;而且它们的值在数据库中是持久化的。 你可以使用config_parameter模型来存储各种配置数据&#xff0c;…

汇编指令retn和retn x的区别

在32位汇编语言中&#xff0c;retn 和 retn 16 指令用于从子过程&#xff08;或函数&#xff09;返回&#xff0c;但它们之间有一些区别。 retn&#xff1a; retn 指令没有附加的立即数参数。当执行 retn 指令时&#xff0c;控制权返回到调用该过程的地址&#xff0c;但不会对…

Web Animation API

工作中经常会遇到需要动画的场景&#xff0c;连贯动画都是用CSS实现&#xff0c;&#xff0c;但是如果遇到需要用户互动介入的动画&#xff0c;那纯CSS很比较吃力&#xff0c;也不是不能实现&#xff0c;需要动态修改CSS变量&#xff0c;而且动画容易被JS代码阻塞&#xff0c;导…

XSS漏洞:xss.haozi.me靶场通关

xss系列往期文章&#xff1a; 初识XSS漏洞-CSDN博客 利用XSS漏洞打cookie-CSDN博客 XSS漏洞&#xff1a;xss-labs靶场通关-CSDN博客 XSS漏洞&#xff1a;prompt.mi靶场通关-CSDN博客 目录 0x00 0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B 0x0C…

【C++干货铺】红黑树 (Red Black Tree)

个人主页点击直达&#xff1a;小白不是程序媛 C系列专栏&#xff1a;C干货铺 代码仓库&#xff1a;Gitee 目录 前言 红黑树的概念 红黑树的性质 红黑树结点的定义 红黑树的插入操作 插入新的结点 检查规则进行改色 情况一 情况二 情况三 插入完整代码 红黑树的验…

母线温度预测业务需求设计

1、需求背景 需求对象&#xff1a;设备使用方、设备维修人员 使用场景&#xff1a;使用方需要对母线温度进行实时监测和预警&#xff0c;及时排除安全隐患&#xff0c;保证长期正常运行。 使用目的&#xff1a;准确预测母线的未来温度&#xff0c;对于可能存在的隐患提前预警…

OpenCV-Python(43):姿势估计

目标 学习了解calib3D 模块学习在图像中创建3D效果 calib3D模块 OpenCV-Python的calib3D模块是OpenCV库中的一个重要模块&#xff0c;用于摄像头标定和三维重建等计算机视觉任务。该模块提供了一些函数和类&#xff0c;用于摄像头标定、立体视觉和三维重建等方面的操作。 下…

MySQL语句 | 使用WITH子句和临时表达式进行数据分析和筛选

MySQL支持使用WITH创建临时表达式&#xff0c;通常称为"Common Table Expressions"&#xff08;CTE&#xff09;。CTE 通常用于较复杂的查询&#xff0c;为复杂查询提供了一种更清晰、模块化的方式&#xff0c;以提高复杂查询的可读性和易维护性。 举个通用的例子 …

MySQL-索引的介绍和使用

MySQL 支持哪些类型的索引&#xff1f; 主键索引&#xff08;Primary Key Index&#xff09; 唯一索引&#xff08;Unique Index&#xff09; 普通索引&#xff08;Normal Index&#xff09; 全文索引&#xff08;Full-text Index&#xff09; 组合索引&#xff08;Composite …

apache seatunnel web 安装部署

下载文件 apache-seatunnel-2.3.3-bin.tar.gz apache-seatunnel-web-1.0.0-bin.tar.gz download_datasource.sh 准备工作 解压文件tar -zxvf apache-seatunnel-2.3.3-bin.tar.gz tar -zxvf apache-seatunnel-web-1.0

《动手学深度学习》学习笔记 第10章 注意力机制

文章目录 本系列为《动手学深度学习》学习笔记10.1 注意力提示10.1.1 生物学中的注意力提示10.1.2 查询、键和值10.1.3 注意力的可视化 10.2 注意力汇聚&#xff1a;Nadaraya-Watson 核回归10.2.1 生成数据集10.2.2 平均汇聚10.2.3 非参数注意力汇聚10.2.4 带参数注意力汇聚10.…

Python用selenium实现自动登录和下单的项目实战

前言 学python对selenium应该不陌生吧 Selenium 是最广泛使用的开源 Web UI&#xff08;用户界面&#xff09;自动化测试套件之一。Selenium 支持的语言包括C#&#xff0c;Java&#xff0c;Perl&#xff0c;PHP&#xff0c;Python 和 Ruby。目前&#xff0c;Selenium Web 驱动…

openssl3.2 - 官方demo学习 - test - certs

文章目录 openssl3.2 - 官方demo学习 - test - certs概述笔记.sh的执行语句打印的方法要修改的实际函数备注END openssl3.2 - 官方demo学习 - test - certs 概述 官方demos目录有证书操作的例子 已经做了笔记 openssl3.2 - 官方demo学习 - certs 但是这个demos/certs目录的脚…

安卓屏幕自动息屏时亮度突然变亮

自然息屏流程 USER_ACTIVITY_SCREEN_BRIGHT&#xff08;亮屏&#xff09; → USER_ACTIVITY_SCREEN_DIM&#xff08;DIM&#xff09; → USER_ACTIVITY_SCREEN_DREAM&#xff08;灭屏&#xff09;变化&#xff0c;最终进入ASLEEP后。在息屏时会执行一个变暗的动画 frameworks\…

鸿蒙应用开发-请求语音合成服务获取音频文件

功能介绍&#xff1a; 请求语音合成服务&#xff0c;通过上传语音合成文本&#xff0c;返回音频数据&#xff0c;并保存到本地。这里要说明一下&#xff0c;由于HttpResponse接口给问题&#xff0c;服务的响应类型必须是application/octet-stream&#xff0c;才能正确获取音频…

C# 数据类型与类型转换:包含教程与示例

C# 数据类型 C# 中的变量必须是指定的数据类型&#xff1a; int myNum 5; // 整数&#xff08;整数&#xff09; double myDoubleNum 5.99D; // 浮点数 char myLetter D; // 字符 bool myBool true; // 布尔 string myText "Hello…

【知识---如何进行图像数据的归一化呢(normalize)】

提示&#xff1a;文章写完后&#xff0c;目录可以自动生成&#xff0c;如何生成可参考右边的帮助文档 文章目录 前言范围归一化均值和标准差归一化&引申总结 前言 在做基于图像的目标检测遇到了图像的归一化操作&#xff0c;为此展开了一定的探讨&#xff1a; 图像归一化…

虚拟机扩容教程

一、打开虚拟机主界面 二、右键鼠标进入设置模式 三、选择扩展 等待扩展结束 4、打开虚拟机&#xff0c;搜索工具GParted 5、接下来根据提示操作即可&#xff08;已经扩容&#xff0c;不方便再次扩容演示&#xff0c;方法可行&#xff09;