您好,欢迎光临本网站![请登录][注册会员]  
文件名称: 编写数据结构文章管理
  所属分类: 其它
  开发工具:
  文件大小: 6kb
  下载次数: 0
  上传时间: 2015-05-20
  提 供 者: qq_28******
 详细说明: ////////预处理头文件////// #include #include #include #include #include #include #define N 20 //所输入页的行数 #define size_l 80 //每行的字符数 typedef struct Line{ char *data; //数据域 struct Line *next; //指针域 }Line; Line *head=NULL; //定义一个全局变量指针,头结点 void InitWord(Line* &head) { printf("请输入一页文字(以Ctrl+E表示结束,每行最多输入80个字符!):\n"); Line* p=new Line; //定义一个L ine*指针 head=p; char buffer[100]; while(1) { gets(buffer); if(strlen(buffer)>80) { printf("每行最多输入80字符\n"); break; } if(buffer[0]==5) break; //如果发现^E,退出 p->data=new char[strlen(buffer)+1]; strcpy(p->data,buffer); if(buffer[strlen(buffer)-1]==5) { p->data[strlen(buffer)-1]='\0'; break; } p->next=new Line; p=p->next; } p->next=NULL; } ////////统计字母数//////// int CountLetter(Line* &head) { Line *p=head; int CountL=0; while(p!=NULL) { int len=strlen(p->data); //计算当前行的长度 for(int i=0;idata[i]>='a'&&p->data[i]<='z')||(p->data[i]>='A'&&p->data[i]<='Z')) //判断字符的条件 CountL++; p=p->next; } return CountL; } ///////统计数字数量//////////// int CountDigit(Line* &head) { Line *p=head; int CountD=0; while(p!=NULL) { int len=strlen(p->data); for(int i=0;idata[i]>=48&&p->data[i]<=57) CountD++; p=p->next; } return CountD; } //////统计空格数///////// int CountSpace(Line* &head) { Line *p=head; int CountS=0; while(p!=NULL) { int len=strlen(p->data); for(int i=0;idata[i]==32) CountS++; p=p->next; } return CountS; } ///////统计文章总字数//////////// int CountWord(Line* &head) { Line *p=head; int CountW=0; while(p!=NULL) { CountW+=strlen(p->data); p=p->next; } return CountW; } ////////统计文字数///////// int CountHanzi(Line* &head) { Line *p=head; int CountH=0; while(p!=NULL) { int len=strlen(p->data); for(int i=0;idata[i]&0x80) { CountH++; } p=p->next; } return int(CountH/2); } ////////统计测试字符串在文章中出现的次数/////////// int CountString(Line* &head,char* S) { Line *p=head; int count=0; int i,j,pos; int len=strlen(S); while(p!=NULL) { int len1=strlen(p->data); i=0; j=0; pos=i; G1: while(idata[i]==S[j]) { i++; j++; } else { i=i-j+1; j=0; } } if(j>=len) { count++; j=0; goto G1; } p=p->next; } return count; } ///////删除指定的字符串///////// void Delete(char* str,char *S) //把字符串S从Str中删除 { char *p=strstr(str,S); while(p!=NULL) { char buffer[80]; int len=strlen(str); int i=len-strlen(p); int j=i+strlen(S); int count=0; for(int m=0;mdata,S)!=NULL) //能够找到指定字符串 { if(strlen(p->data)==strlen(S)) { Delete(p->data,S); q->next=p->next; delete p; p=q; } else { Delete(p->data,S); q=p; } } p=p->next; } } ////////输出文章///////// void PrintWord(Line * &head) { Line *p=head; while(p!=NULL) { printf("%s\n",p->data); p=p->next; } } void main() { Line *head=NULL; int a; char c; char s1[80]; char s2[80]; G2: printf("*****************文章编辑********************\n"); printf("---------------------------------------------\n"); printf("******1.新建一页文字 2.统计 *******\n"); printf("******3.删除字符串 4.输出文章 *******\n"); printf("******5.刷新 6.退出 *******\n"); printf("---------------------------------------------\n"); LOOP: printf("请选择(输入主菜单中选项前的数字):"); scanf("%d",&a); switch(a) { case 1: InitWord(head); printf("--------输出文章:-----"); PrintWord(head); goto LOOP; case 2: printf("***A.统计字符串 B.统计字符数量***\n"); printf("请选择(输入A或B):"); cin>>c; if(c=='A') { printf("请输入要统计的字符串:"); scanf("%s",s1); printf("该指定的字符串出现的次数为:%d 次\n",CountString(head,s1)); } else if(c=='B') { printf("文章全部字母数:%d\n",CountLetter(head)); printf(" 全部数字个数:%d\n",CountDigit(head)); printf(" 全部空格个数:%d\n",CountSpace(head)); printf(" 全部汉字个数:%d\n",CountHanzi(head)); printf(" 总字数:%d\n",CountWord(head)); } else printf("没有这个选项!!!\n"); goto LOOP; case 3: printf("------请输入要删除的字符串:"); scanf("%s",s2); DeleteString(head,s2); printf("删除后的文章为:"); PrintWord(head); goto LOOP; case 4: if(head==NULL) { printf("文章没有任何内容!!!\n"); goto LOOP; } printf("-------输出的文章为:------"); PrintWord(head); goto LOOP; case 5: system("cls"); goto G2; case 6: printf("退出程序!\n"); return ; default: printf("!!没有该选项,是否想退出程序?(Y/N):"); cin>>c; if(c=='Y') goto LOOP; else return ; } return ; } ////////预处理头文件////// #include #include #include #include #include #include #define N 20 //所输入页的行数 #define size_l 80 //每行的字符数 typedef struct Line{ char *data; //数据域 struct Line *next; //指针域 }Line; Line *head=NULL; //定义一个全局变量指针,头结点 void InitWord(Line* &head) { printf("请输入一页文字(以Ctrl+E表示结束,每行最多输入80个字符!):\n"); Line* p=new Line; //定义一个Line*指针 head=p; char buffer[100]; while(1) { gets(buffer); if(strlen(buffer)>80) { printf("每行最多输入80字符\n"); break; } if(buffer[0]==5) break; //如果发现^E,退出 p->data=new char[strlen(buffer)+1]; strcpy(p->data,buffer); if(buffer[strlen(buffer)-1]==5) { p->data[strlen(buffer)-1]='\0'; break; } p->next=new Line; p=p->next; } p->next=NULL; } ////////统计字母数//////// int CountLetter(Line* &head) { Line *p=head; int CountL=0; while(p!=NULL) { int len=strlen(p->data); //计算当前行的长度 for(int i=0;idata[i]>='a'&&p->data[i]<='z')||(p->data[i]>='A'&&p->data[i]<='Z')) //判断字符的条件 CountL++; p=p->next; } return CountL; } ///////统计数字数量//////////// int CountDigit(Line* &head) { Line *p=head; int CountD=0; while(p!=NULL) { int len=strlen(p->data); for(int i=0;idata[i]>=48&&p->data[i]<=57) CountD++; p=p->next; } return CountD; } //////统计空格数///////// int CountSpace(Line* &head) { Line *p=head; int CountS=0; while(p!=NULL) { int len=strlen(p->data); for(int i=0;idata[i]==32) CountS++; p=p->next; } return CountS; } ///////统计文章总字数//////////// int CountWord(Line* &head) { Line *p=head; int CountW=0; while(p!=NULL) { CountW+=strlen(p->data); p=p->next; } return CountW; } ////////统计文字数///////// int CountHanzi(Line* &head) { Line *p=head; int CountH=0; while(p!=NULL) { int len=strlen(p->data); for(int i=0;idata[i]&0x80) { CountH++; } p=p->next; } return int(CountH/2); } ////////统计测试字符串在文章中出现的次数/////////// int CountString(Line* &head,char* S) { Line *p=head; int count=0; int i,j,pos; int len=strlen(S); while(p!=NULL) { int len1=strlen(p->data); i=0; j=0; pos=i; G1: while(idata[i]==S[j]) { i++; j++; } else { i=i-j+1; j=0; } } if(j>=len) { count++; j=0; goto G1; } p=p->next; } return count; } ///////删除指定的字符串///////// void Delete(char* str,char *S) //把字符串S从Str中删除 { char *p=strstr(str,S); while(p!=NULL) { char buffer[80]; int len=strlen(str); int i=len-strlen(p); int j=i+strlen(S); int count=0; for(int m=0;mdata,S)!=NULL) //能够找到指定字符串 { if(strlen(p->data)==strlen(S)) { Delete(p->data,S); q->next=p->next; delete p; p=q; } else { Delete(p->data,S); q=p; } } p=p->next; } } ////////输出文章///////// void PrintWord(Line * &head) { Line *p=head; while(p!=NULL) { printf("%s\n",p->data); p=p->next; } } void main() { Line *head=NULL; int a; char c; char s1[80]; char s2[80]; G2: printf("*****************文章编辑********************\n"); printf("---------------------------------------------\n"); printf("******1.新建一页文字 2.统计 *******\n"); printf("******3.删除字符串 4.输出文章 *******\n"); printf("******5.刷新 6.退出 *******\n"); printf("---------------------------------------------\n"); LOOP: printf("请选择(输入主菜单中选项前的数字):"); scanf("%d",&a); switch(a) { case 1: InitWord(head); printf("--------输出文章:-----"); PrintWord(head); goto LOOP; case 2: printf("***A.统计字符串 B.统计字符数量***\n"); printf("请选择(输入A或B):"); cin>>c; if(c=='A') { printf("请输入要统计的字符串:"); scanf("%s",s1); printf("该指定的字符串出现的次数为:%d 次\n",CountString(head,s1)); } else if(c=='B') { printf("文章全部字母数:%d\n",CountLetter(head)); printf(" 全部数字个数:%d\n",CountDigit(head)); printf(" 全部空格个数:%d\n",CountSpace(head)); printf(" 全部汉字个数:%d\n",CountHanzi(head)); printf(" 总字数:%d\n",CountWord(head)); } else printf("没有这个选项!!!\n"); goto LOOP; case 3: printf("------请输入要删除的字符串:"); scanf("%s",s2); DeleteString(head,s2); printf("删除后的文章为:"); PrintWord(head); goto LOOP; case 4: if(head==NULL) { printf("文章没有任何内容!!!\n"); goto LOOP; } printf("-------输出的文章为:------"); PrintWord(head); goto LOOP; case 5: system("cls"); goto G2; case 6: printf("退出程序!\n"); return ; default: printf("!!没有该选项,是否想退出程序?(Y/N):"); cin>>c; if(c=='Y') goto LOOP; else return ; } return ; } ...展开收缩
(系统自动生成,下载前可以参看下载内容)

下载文件列表

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度
  • 本站已设置防盗链,请勿用迅雷、QQ旋风等多线程下载软件下载资源,下载后用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.
 相关搜索: c语言
 输入关键字,在本站1000多万海量源码库中尽情搜索: