谭浩强版经典课件C语言经典课件 谭浩强版

整理文档很辛苦,赏杯茶钱您下走!

免费阅读已结束,点击下载阅读编辑剩下 ...

阅读已结束,您可以下载文档离线阅读编辑

资源描述

第八章字符和字符串2000级统招主讲:樊广军第八章字符和字符串本章目标1.进一步分清字符和字符串的特性2.了解字符处理函数和字符串处理函数3.熟悉两个函数库:stdlib.h和string.h4.进一步掌握使用函数来设计程序第八章字符和字符串字符和字符串处理函数的主要用途:·设计编辑器·设计字处理器·设计排版文字处理器§8.1引言·设计转换程序第八章字符和字符串§8.2字符和字符串一、字符串的特点回顾:charch;ch为字符变量chara[10];a为字符数组·字符串是一个特殊的数组在数组中有一个空字符'\0'来作为字符数组的结束·通过访问数组名来访问字符串字符串可用指向字符串的指针来访问第八章字符和字符串二、关于字符、字符数组、字符串指针的几种说明·charch;ch为字符变量·chara[]={'s','t','u','d','e','n','t'};a为字符数组长度为7·charb[]=student;b为字符数组,长度为8b也可作为字符串名·char*ptr=student;ptr为指向字符或字符串的指针第八章字符和字符串三、关于字符串指针例:#includestdio.hmain(){charp;chars[]=Iamastudent!;p=s;printf(p=%s,p);}形式char标识符;运行结果为:p=Iamastudent!1.字符串指针的定义表示p为指针变量,可指向一个字符串的首地址。如:char*p;第八章字符和字符串可以在定义的时候赋初值:main(){charp=Iamastudent!;…或者:main(){charp;p=Iamastudent!;…}则:p代表I(p+3)代表mpIamastudend\0第八章字符和字符串1.“…”一个串名代表示该串的首地址2.在输入(scanf)和输出(printf)中,也可用%s将整个串一次输入/输出3.不能字符数组整体赋值,chara[8];a[8]=stident;错误结果注意:第八章字符和字符串例:将字符串a复制到字符串b1)main(){chara[]=Iamateacher!;charb[20];inti;for(i=0;(a+i)!='\0';i++)(b+i)=(a+i);(b+i)='\0';1)用字符数组实现第八章字符和字符串printf(stringais:%s\n,a);printf(stringbis:);for(i=0;b[i]='\0';i++)printf(%c,b[i]);printf(\n);}等价于:printf(stringbis:%s\n,b);第八章字符和字符串stringais:Iamateacher!stringbis:Iamateacher!运行情况如下:第八章字符和字符串main(){chara[]=Iamateacher!;charb[20],p1,p2;p1=a;p2=b;for(;p1!='\0';p1++,p2++)p2=p1;p2='\0';p1=a;p2=b;printf(stringais:%s\n,p1);printf(stringbis:%s\n,p2);}2)用指针变量实现第八章字符和字符串运行情况如下:stringais:Iamateacher!stringbis:Iamateacher!第八章字符和字符串对上面的程序作如下改变:main()请思考:{chara[]=Iamateacher;charb[20],*p1,*p2;p1=a;p2=b;p2=p1;则b数组中的内容是否已复制了a数组中的内容第八章字符和字符串结论p1=a;p2=a;p1a;p2b;p1a;p2p2=p1后;b第八章字符和字符串2.字符串指针作函数参数例:用函数调用实现字符串的复制与数值变量指针一样,字符串指针,字符串数组均可作为函数参数作用:可在函数中改变实参内容。{to[i]=from[i];i++}to[i]='\0';}main(){chara[]=Iamateacher;charb[]=Youareastudent;printf(string_a=%s\nstring_b=%s\n,a,b);copy_string(a,b);printf(\nstring_a=%s\nstring_b=%s\n,a,b)}voidcopy_string(from,to)charfrom[],to[];{inti=0;while(from[i]!='\0')方法:(1)字符数组作参数运行结果:string_a=Iamateacherstring_b=Youareastudentstring_a=Iamateacherstring_b=Iamateacher可以在main中使用字符串指针:chara=Iamateacher.;charb=Youareastudent.…但以字符串的方式输出b中内容时,遇到第一个'\0'时结束。实际上,数组b中的内容为:Iamateacher\0nt\0第八章字符和字符串voidcopy_string(from,to)charfrom,to;{for(;from!='\0';from++,to++)to=from;to='\0';}或:将for改用while(2)形参用字符指针变量while(from!='\0'){to=from;to++;from++;}第八章字符和字符串或:while((to=from)!='\0'){from++;to++;}或:while((to++=from++)!='\0');实际上'\0'的ASCII码为0,故可将while((to++=from++)!=0)简化为:while(to++=from++)第八章字符和字符串传引用调用时,函数的实参、形参调用的四种情况实参形参数组名数组名数组名指针型指针型指针型……指针型数组名小结:第八章字符和字符串§8.3字符处理的库函数用于字符处理的函数在头文件ctype.h中其中部分见表8-1(P252)程序范例:P252~P255第八章字符和字符串例2.从键盘输入一个字符串,内有数字和非数字、将其中的连续数字作为一个整数存放到一数组中,统计该字符串中有多少个整数,并输出这些整数。例如:输入x789y!a7960345w则把789放在a[0],7960放在a[1],345放在a[2]中;程序流程图:开始变量说明和初始化键盘输入字符串放入string测出字符串的长度lenj=lenk=0a[i][k]='\0'输出数组a[i]结束i=i1string[j]是数字ch=a[i][k];k=k+1;k!=0ch=a[i][k];k=0;i=i+1;NNNNYYYYcharstring[]存放输入的字符串unsignedlen字符的长度chara[][]存放字符中的整数inti=0a数组的行号intk=0a数组的列号intj循环变量程序如下:/*---从一字符串中选出数字P2519.16---*/#includestdio.h#includestring.h#includectype.h#includeconio.hmain(){staticcharstring[SIZE];inti=0,j,k=0,num=0;unsignedlen;charch,a[20][6];gets(string);len=strlen(string);elseif(k!=0){a[i][k]='\0';k=0;i=i+1;}}if(k==0)i=i1;elsea[i][k]='\0';printf(numberofdigitis:%d\n,i+1);for(num=0;num=i;num,num++);printf(a[%d]=%s\n,num,a[numn]);}for(j=0;jlen;j++){if(isdegit(ch=string[j])){a[i][k]=ch;k=k+1;}第八章字符和字符串§8.4字符串转换函数用于字符串处理的函数在头文件stdlib.h中·把字符串转换成数字的函数见表8-2使用这些函数的条件是:字符串中的字符必须是数字如:char*ptr1=123.4;char*ptr2=678;第八章字符和字符串例1.P256(8-4)可写成:#includestdio.h#includestdlib.hmain(){doubled;char*p=99.0;d=atof(p);}第八章字符和字符串例2.P257(8-5)可写成:#includestdio.h#includestdlib.hmain(){inti;char*p=2593;d=atoi(p);}第八章字符和字符串例3.P257(8-6)可写成:#includestdio.h#includestdlib.hmain(){longl;char*p=1000000;l=atol(p);}第八章字符和字符串若字符串中即有数字又有其它字符,怎么处理?如:51.2%areadmitted非数字字符数字字符使用doublestrtod()函数问题:例4:P258(8-7)第八章字符和字符串另:strcpy(char*p1,char*p2)字符串拷贝strcat(char*p1,char*p2)字符串连接strcmp(char*p1,char*p2)字符串比较/*pro10_13.c*/#includestdio.h#includeconio.h#includestring.hmain()·字符串数组举例例1:字符串复制。第八章字符和字符串{inti;charname1[6]={pear};charname2[13]={Apple&Banana};printf(Resultis:\n);printf(1---%s\n,name2);strcpy(name2,name1);/*将name1中的字符串连同\0一起复制到name2*/printf(2---%s\n,name2);for(i=0;i=11;i++)printf(%c,name2[i]);getch();}·字符串数组举例第八章字符和字符串第八章字符和字符串复制后:复制前:Name1=pear\0Name2=Appl&Banana\0eName1=pear\0Name2=pear&Banana\0\0第八章字符和字符串Resultis:1---name2---Apple&Banana2---name2---pearpear&Banana运行情况如下:例2:字符串连接,将两个字符串连接在一起。/*pro10_14.c*/#includestdio.h#includeconio.h#includestring.hmain(){inti;charname1[13]={pear};charname2[6]={apple};printf(Resultis:\n);printf(1---%s\n,name1);strcat(name1,name2);/*将name2中的字符串连接到name1*/printf(2---%s\n,name1);for(i=0;i13;i++)printf(##%c,name1[i]);printf(\n---------------\n);for(i=0;i13;i++)printf(#%d,name1[i]);getch();}第八章字符和字符串程序运行结果:Resultis:1---pear2---pearapple##p##e##a##r##a##p##p##l##e########---------------#112#101#97#114#97#112#112#108#101#0#0#0#0例3:输入一行字符,统计其中有多少个单词,单词之间用空格分隔开。#includestdio.h”

1 / 42
下载文档,编辑使用

©2015-2020 m.777doc.com 三七文档.

备案号:鲁ICP备2024069028号-1 客服联系 QQ:2149211541

×
保存成功