C语言版数据结构课程设计文章编辑系统_第1页
C语言版数据结构课程设计文章编辑系统_第2页
C语言版数据结构课程设计文章编辑系统_第3页
C语言版数据结构课程设计文章编辑系统_第4页
C语言版数据结构课程设计文章编辑系统_第5页
已阅读5页,还剩11页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、课程设计说明书 no.1文章编辑系统1、课程设计目的(1)较熟练地掌握语言的基本内容及程序设计的基本方法与编程技巧。(2)较熟练地掌握在系统上编辑、编译、连接和运行c程序的方法。(3)通过设计一个完整程序,掌握数据结构的算法编写、类c语言算法转换成c程序并上机调试的基本方法。2、课程设计方案论证2.1 设计思路(1)定义结构体 struct line,文本行采用顺序存储,行与行之间采用链式存储文章编辑系统统计字符删除字符统计文字查找字符图1:功能模块图(2)主要函数:int countnumber(line * &head) /*统计数字数*/ 沈 阳 大 学课程设计说明书 no.2图2:统计

2、数字函数流程图:开始*p=head,count=0int len=str len(p-data)i=0idatai=48 &p-datainext!p=null结束nynyn 沈 阳 大 学课程设计说明书 no.3int findstring(line * &head,char *str) /*统计str在文章中出现的次数*/开始count=0;h=0;len1=0; len2=strlen(str);p-datai=str0i+k=0;j=0;p-datai+j=strjk+;j+;k=len2count+;i=i+k-1;结束ynynny图3:统计str在文章中的出现次数 沈 阳 大 学课

3、程设计说明书 no.42.2 源程序清单#include #include typedef struct line char *data; struct line *next;line; void create(line * &head)line *p;printf (请输入一页文章,以#为结尾(每行最多输入80字符!):n);p=(struct line*)malloc(sizeof(struct line); head=p; char tmp200; for(;1;) gets(tmp); if(strlen(tmp)80) printf(每行最多输入80字符); break; if(tm

4、p0=35)break; p=p-next=(struct line*)malloc(sizeof(struct line); p-data=(char*)malloc(strlen(tmp); strcpy(p-data,tmp); if(tmpstrlen(tmp)-1=35) p-datastrlen(tmp)-1=0; 沈 阳 大 学课程设计说明书 no.5 break; p-next=null; head=head-next;int countletter(line * &head) line *p=head; int count=0;do int len=strlen(p-data

5、); for(int i=0;idatai=a&p-dataidatai=a&p-datainext)!=null); return count; int countnumber(line * &head) line *p=head; int count=0; do int len=strlen(p-data); for(int i=0;idatai=48 & p-datainext)!=null); return count;int countspace(line * &head) line *p=head; int count=0; do int len=strlen(p-data); f

6、or(int i=0;idatai=32)count+; while(p=p-next)!=null); return count;/*统计文章的总字数*/int countall(line * &head) line *p=head; int count=0; do count+=strlen(p-data); while(p=p-next)!=null); return count; 沈 阳 大 学课程设计说明书 no.7int findstring(line * &head,char *str) line *p=head; int count=0; int h=0; int len1=0

7、; int len2=strlen(str); int i,j,k; do len1=strlen(p-data); for(i=0;idatai=str0)k=0; for(j=0;jdatai+j=strj) k+;if(k=len2)count+;i=i+k-1; while(p=p-next)!=null); return count;void delstringword(char *s,char *str) char *p=strstr(s,str); 沈 阳 大 学课程设计说明书 no.8char tmp80; int len=strlen(s); int i=len-strlen

8、(p); int j=i+strlen(str); int count=0; for(int m=0;mi;m+)tmpcount+=sm; for(int n=j;ndata,str)!=null)delstringword(p-data,str);while(p=p-next)!=null); void output(line * &head) line *p=head; do printf(%sn,p-data); while(p=p-next)!=null); 沈 阳 大 学课程设计说明书 no.9void main() int i=0; int operate;line * head

9、;create(head); printf(输入的文章为:n); output(head); printf(n); printf(全部字母数:%d n,countletter(head); printf(数字个数:%d n,countnumber(head); printf(空格个数: %d n,countspace(head); printf(文章总字数: %d n,countall(head); char str120,str220; printf(n); printf(*n); printf(* 菜 单 *n); printf(*n); printf(* 1-统计字符串 *n); pri

10、ntf(* 2-删除字符串 *n); printf(* 0-退出 *n); printf(*n); do printf(请输入你要选择的操作: ); scanf(%d,&operate); switch(operate) 沈 阳 大 学课程设计说明书 no.10case 1: printf(请输入要统计的字符串:); scanf(%s,&str1);printf(%s出现的次数为:%d n,str1,findstring(head,str1); printf(n);countall(head); countnumber(head);countletter(head);countspace(he

11、ad); break; case 2: printf(请输入要删除的某一字符串:); scanf(%s,&str2); delstring(head,str2);printf(删除%s后的文章为:n,str2);output(head); break; case 0: ;break; while(operate!=0); 沈 阳 大 学课程设计说明书 no.113、课程设计运行结果与分析图3:初始界面 沈 阳 大 学课程设计说明书 no.12图4:运行界面 沈 阳 大 学课程设计说明书 no.13输入1:统计字符数图5:统计字符界面 沈 阳 大 学课程设计说明书 no.14输入2:删除字符图6:删除字符 沈 阳 大 学课程设计说明书 no.15输入0:退出程序图7:退出程序 沈 阳 大 学课程设计说明书 no.164、课程设计体会此次课程设计使我对数据结构方面的知识有了更加深入的了解,也使我认识到自己在学习编程方面还有很多的不足。今后我要多读一些编程方面的书籍,不能只拘泥于课本上的知识,并注重理论与实践的结合,多上机练习编写程序,提高自己的实际动手能力和独立思考的能力,不断充实自己,更好的掌握编程思想。参考文献1

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论