版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、严蔚敏版数据结构所有算法代码线性数据结构2013年9月/线性表、链表/栈、队列/数组、广义表/串线性表typedefstructcharname20;注意如果应用指针的形式/在初始化每个结点时一定要先为结点中的每个变量开辟内存空间charsex;charaddr100;unsignedintage;charphonenum20;node;/结点描述typedefstructnode*p;intlength;当前顺序表长度intlistsize;/当前分配的线性表长度list;线性表描述listL;定义一个线性表intinitlist(list&1)构造一个空的线性表l.p=(node*
2、)malloc(LIST_INIT_SIZE*sizeof(node);if(!(Lp)exit(1);l.length=0;l.listsize=LIST_INIT_SIZE;returntrue;voiddestroylist(list&l)销毁线性表操作if(l.p!=NULL)free(l.p);printf("销毁成功!n");elseprintf("线性表不存在!n");intclearlist(list&l)将线性表置空操作if(l.p=NULL)printf("线性表不存在!n");returnfals
3、e;elsefree(l.p);l.p=(node*)malloc(l.listsize*sizeof(node);l.length=O;returntrue;intlistempty(list&)/判断线性表是否为空表if(l.p=NULL)returntrue;elsereturnfalse;intgetelem(list&l,inti,node&e)/if(l.p=NULL)returnfalse;elsee=l.pi-1;returntrue;intpriorelem(list&l,inti,node&pre_e)/if(i=0|l.p=NULL
4、)returnfalse;elsepre_e=l.pi-1;returntrue;intnextelem(list&l,inti,node&next_e)/_if(i>=l.length|l.p=NULL)returnfalse;if(l.p=NULL)returntrue;elsereturnfalse;intgetelem(list&l,inti,node&e)/if(l.p=NULL)returnfalse;elsee=l.pi-1;returntrue;intpriorelem(list&l,inti,node&pre_e)/if(
5、i=0|l.p=NULL)returnfalse;elsepre_e=l.pi-1;returntrue;intnextelem(list&l,inti,node&next_e)/_if(i>=l.length|l.p=NULL)returnfalse;用e返回表中第i个数据元素得到第i个元素的前驱元素得到表中第i个元素的后继元素elsenext_e=l.pi+1;returntrue;intinsertlist(list&l,inti,node&e)将元素e插入到表I中第i个元素的后面node*q,*k;if(i<1|i>l.length+1
6、)returnfalse;if(l.length>=l.listsize)l.p=(node*)realloc(l.p,(l.listsize+LISTINCREMENT)*sizeof(node);if(!l.p)exit(1);l.listsize+=LISTINCREMENT;k=&l.pi-1;for(q=&l.pl.length-1;q>k;q-)*(q+1)=*q;*k=e;l.length+;returntrue;intdeletelist(list&l,inti,node&e)/删除表中第i个元素并用e返回其值node*q;intj=
7、i-1;if(i<1|i>l.length)returnfalse;e=l.pi-1;for(q=&l.pi-1;j<l.length-1;j+)*q=*(+q);l.length-;returntrue;voidmergerlist(listla,listlb,list&lc)归并两个按非递减排列的线性表intla_len,lb_len,i=1,j=1,k=O;nodeai,bj;la_len=la.length;Ib_len=lb.length;while(i<=la_len&&jv=lb_len)一一getelem(la,i,ai)
8、;getelem(lb,j,bj);if(ai.a<=bj.a)insertlist(lc,+k,ai);i+;elseinsertlist(lc,+k,bj);j+;while(i<=la_len)_getelem(la,i,ai);insertlist(lc,+k,ai);i+;while(j<=lb_len)_getelem(lb,j,bj);insertlist(lc,+k,bj);j+;intListAscendingOrder(list&)/按结点中某一元素的比较升序排列线性表中的结点nodee;inti,j;if(l.p=NULL|l.length=1)
9、returnERROR;for(i=0;i<l.length-1;i+)for(j=i+1;j<l.length;j+)if(l.pi.num>=l.pj.num)e=l.pi;l.pi=l.pj;l.pj=e;returnOK;省略降序排列voidMergerList(listla,listlb,list&lc)将两线性表升序排列后再归并node*q,*k,e1;inti=0,j=0,m=0,n;ListAscendingOrder(la);ListAscendingOrder(lb);printf("表a升序排列后为:n");for(i=0;i
10、<la.length;i+)printf("%d",la.pi.num);printf("n");printf("表b升序排列后为:n");for(i=0;i<lb.length;i+)printf("%d",lb.pi.num);printf("n");i=0;while(i<la.length&&j<lb.length)if(la.pi.numv=lb.pj.num)e1=la.pi;i+;elsee仁lb.pj;j+;if(e1.num!=lc.pl
11、c.length-1.num)InsertList(lc,+m,e1);if(i<la.length)while(i<la.length)if(la.pi.num!=lc.plc.length-1.num)InsertList(lc,+m,la.pi);i+;if(j<lb.length)while(j<lb.length)if(lb.pj.num!=lc.plc.length-1.num)InsertList(lc,+m,lb.pj);j+;printf("按升序排列再归并两表为:n");for(n=0;n<lc.length;n+)prin
12、tf("%d",lc.pn.num);printf("n");链表typedefstructintnum;node;typedefstructLISTnodedata;structLIST*next;list,*slist;intCreatList(slist&head)/此处应为只针对的引用head=(list*)malloc(sizeof(list);if(!head)returnERROR;head->next=NULL;returnOK;voidInvertedList(slist&head1,slist&head2
13、)/构造新表逆置单链表函数list*p,*q;p=head1->next;q=p->next;if(p=NULL)printf("链表为空无法实现逆置操作n");elsewhile(q!=NULL)p->next=head2->next;head2->next=p;p=q;q=q->next;p->next=head2->next;head2->next=p;printf("逆置成功!?n");voidInsertList(slist&head,node&e)此处应为指针的引用/而不应
14、该是list*headlist*p,*q;p=(list*)malloc(sizeof(list);q=head;while(q->next!=NULL)q=q->next;p->next=q->next;q->next=p;p->data=e;voidInvertedList(sqlist&head)/不构造新表逆置单链表函数/list*p,*q,*k;p=head->next;q=p->next;k=q->next;p->next=NULL;while(k!=NULL)q->next=p;p=q;q=k;k=k-&g
15、t;next;q->next=p;head->next=q;/-交换链表中第i个和第j个结点,函数实现如下一一/intSwapListNode(sqlist&head,inti,intj)intm,n,m1,n1,sum=0;list*p,*q,*k,*c,*d,*ba;ba=head->next;while(ba!=NULL)sum+;ba=ba->next;if(i=j|i>sum|j>sum|i<1|j<1)printf("所要交换的两个结点有误!n");returnERROR;if(ivj)m=i;n=j;el
16、sem=j;n=i;p=head;q=head;for(m1=1;m1<=m;m1+)p=p->next;for(n1=1;n1<=n;n1+)q=q->next;if(p->next=q)/如果结点相邻k=head;while(k->next!=p)k=k->next;/相邻两结点的交换p->next=q->next;q->next=p;k->next=q;else/如果结点不相邻k=head;c=head;while(k->next!=p)k=k->next;while(c->next!=q)c=c->
17、;next;d=p->next;/不相邻两结点之间的交换p->next=q->next;c->next=p;k->next=q;q->next=d;returnOK;/-将链表中结点按结点中某一项大小升序排列,函数实现如下-/intAscendingList(sqlist&head)intm,n,sum=0,i,j;list*p,*q,*k;k=head->next;while(k!=NULL)sum+;k=k->next;for(i=1;i<sum;i+)for(j=i+1;jv=sum;j+)p=head->next;m=
18、1;while(m!=i)m+;p=p->next;q=head->next;n=1;while(n!=j)n+;q=q->next;if(p->data.exp>q->data.exp)如果按exp降序排列,则应将>改为<SwapListNode(head,i,j);returnOK;/-将两链表合并为一个链表-/intAddList(sqlist&head1,sqlist&head2,sqlist&head3)/已将表head1和表head2按某一项升序排列过sqlistp,q;nodee;p=head1->ne
19、xt;q=head2->next;while(p!=NULL&&q!=NULL)if(p->data.expvq->data.exp)InsertList(head3,p->data);p=p->next;elseif(p->data.exp>q->data.exp)InsertList(head3,q->data);q=q->next;elseif(p->data.exp=q->data.exp)e.coefficient=p->data.coefficient+q->data.coeffic
20、ient;e.exp=p->data.exp;/e.exp=q->data.exp;InsertList(head3,e);p=p->next;q=q->next;if(p!=NULL)while(p!=NULL)InsertList(head3,p->data);p=p->next;/如果p中有剩余,则直接将p中剩余元素插入head3中if(q!=NULL)while(q!=NULL)InsertList(head3,q->data);q=q->next;/如果q中有剩余,则直接将q中的剩余元素插入head3中return0;栈/利用栈结构实现
21、数制之间的转换-书intnum;node;typedefstructnode*base;node*top;intstacksize;stack;/顺序栈结构定义intCreatStack(stack&stackll)stackll.base=(node*)malloc(INITSTACKSIZE*sizeof(node);if(!stackll.base)exit(OVERFLOW);stackll.top=stackll.base;stackll.stacksize=INITSTACKSIZE;returnOK;voidpush(stack&s,nodee)/进栈操作if(s
22、.top-s.base>=s.stacksize)s.base=(node*)realloc(s.base,(s.stacksize+INCRESTACKMENT)*sizeof(node);if(!s.base)exit(OVERFLOW);s.top=s.base+s.stacksize;可以不写此语句;s.stacksize+=INCRESTACKMENT;*(s.top+)=e;/*s.top+=e;voidpop(stack&s,node&e)/出栈操作if(s.top=s.base|s.base=NULL)printf("信息有误!n");
23、elsee=*-s.top;/取栈顶元素函数-/voidgettop(stack&s,node&e)if(s.base=s.top)printf("栈为空,无法取得栈顶元素!n");elsee=*(s.top-1);/-栈的应用:括号匹配的检验书/省略了大部分上述已有代码/intzypd(charc)/判断是否为左括号字符if(c=''|c=''|c='(')returnOK;elsereturnERROR;intmain(void)stacks;nodee1,e2,e3;charstINITSTACKSIZE
24、;inti=0,j;CreatStack(s);printf("请输入括号字符,以#做结束符:");scanf("%c",&sti);while(sti!=#)i+;scanf("%c",&sti);if(!zypd(st0)printf("输入字符不合法!n");elsefor(j=0;j<i;j+)if(zypd(stj)/如果是左括号则将此字符压入栈中e1.c=stj;push(s,e1);else/如果当前stj元素不是左括号/则取出栈顶元素,比较栈顶元素与当前stj元素是否项匹配/如
25、果匹配,则栈顶元素出栈gettop(s,e2);if(e2.c=''&&stj=''|e2.c=''&&stj=''|e2.c='('&&stj=')')pop(s,e3);elseprintf("括号验证失败!n");break;if(s.top=s.base)当循环结束时,如果栈为空栈说明输入的括号合法printf("括号验证成功!n");getchar();system("pause")
26、;return0;/链栈描述/typedefstructNodeintnum;structNode*next;node;typedefstructNode*top;Node*base;stack;voidInitStack(stack&s)s.base=(Node*)malloc(sizeof(node);if(!s.base)exit(1);elses.base->next=NULL;s.top=s.base;voidInsertStack(stack&s,nodee)node*p;p=(node*)malloc(sizeof(node);if(!p)exit(1);e
27、lse*p=e;p->next=s.top;s.top=p;voidDeleteStack(stack&s,node&e)node*p;if(s.top=s.base)printf("栈为空!n");elsep=s.top;s.top=s.top->next;e=*p;free(p);队列/链队列的描述及操作/typedefstructNodeinta;structNode*next;Qnode,*QueuePtr;typedefstructQueuePtrfront;QueuePtrrear;LinkQueue;voidInitQueue(Li
28、nkQueue&Q)Q.front=(Qnode*)malloc(sizeof(Qnode);if(!Q.front)exit(1);Q.rear=Q.front;Q.front->next=NULL;voidInsertQueue(LinkQueue&Q,Qnodee)QueuePtrp;p=(Qnode*)malloc(sizeof(Qnode);if(!p)exit(1);*p=e;p->next=NULL;Q.rear->next=p;Q.rear=p;voidDeleteQueue(LinkQueue&Q,Qnode&e)Qnode*
29、p;if(Q.front=Q.rear)printf("队列为空!n");elsep=Q.front->next;e=*p;Q.front->next=p->next;if(p=Q.rear)Q.rear=Q.front;free(p);/循环队列/typedefstructnodeintdata;structnode*next;node;typedefstructqueuenode*base;intfront;intrear;Queue;inttag;voidInitQueue(Queue&Q)Q.base=(node*)malloc(MAX*s
30、izeof(node);if(!Q.base)exit(1);Q.front=Q.rear=0;tag=0;voidInsertQueue(Queue&Q,nodee)if(tag=1&&Q.front=Q.rear)printf("循环队列已满!n");elseQ.baseQ.rear=e;Q.rear=(Q.rea叶1)%MAX;if(Q.rear=Q.front)tag=1;voidDeleteQueue(Queue&Q,node&e)if(tag=0&&Q.front=Q.rear)printf("队
31、列为空!n");elsee=Q.baseQ.front;Q.front=(Q.front+1)%MAX;if(Q.front=Q.rear)tag=0;intEmptyQueue(Queue&Q)if(Q.front=Q.rear&&tag=O)return1;elsereturn0;串/串:堆分配存储形式的一些操作/typedefstructstringchar*ch;intlength;sstring;voidCreatString(sstring&T)T.ch=(char*)malloc(sizeof(char);T.length=0;voidS
32、tringAssign(sstring&T,char*s)/将串s的值赋值给串Tif(T.ch)free(T.ch);T.ch=(char*)malloc(strlen(s)*sizeof(char);或者T.ch=(char*)malloc(sizeof(char);/动态开辟空间不同于静态内存开辟之处if(!T.ch)printf("ERROR");exit(1);strcpy(T.ch,s);T.length=strlen(s);voidClearString(sstring&T)if(T.ch)free(T.ch);T.length=O;voidCo
33、ncatString(sstring&T,sstrings1,sstrings2)/串连接if(T.ch)free(T.ch);T.ch=(char*)malloc(strlen(s1.ch)+strlen(s2.ch)*sizeof(char);if(!T.ch)printf("ERRORn");exit(1);strcpy(T.ch,s1.ch);strcat(T.ch,s2.ch);T.length=strlen(s1.ch)+strlen(s2.ch);voidSubString(sstring&sub,sstrings,intpos,intlen)
34、/取子串操作,取串s中位置从pos至len处的子串于sub中inti,j=0;if(sub.ch)free(sub.ch);sub.ch=(char*)malloc(len-pos+1+1)*sizeof(char);if(!sub.ch)printf("ERRORn");exit(1);for(i=pos-1;i<len;i+)sub.chj+=s.chi;sub.chj='0'subength=strlen(sub.ch);intCountString(sstrings1,sstrings2)/判断子串s2在母串s1中出现的次数inti,j,k,c
35、ount=0;if(s1.length=0|s2.length=0|s2.length>s1.length)printf("ERRORn");return0;elsefor(i=0;i<s1.length;i+)k=1;for(j=0;j<s2.length;j+)if(s2.chj!=s1.chi+j)k=0;break;if(k)count+;returncount;voidDeletestring(sstring&s,intpos,intlen)/删除s串中位置从pos到len处的元素inti,j,k;if(sength=0)printf(&
36、quot;ERRORn");elsefor(i=pos-1,j=len;j<sength;i+,j+)s.chi=s.chj;s.chi='0's.length-=(len-pos)+1;voidDeleteSub(sstring&s1,sstrings2)/删除母串s1中的子串s2inti,j,k,tag=0;for(i=0;i<s1.length;i+)k=1;if(tag)i-;for(j=0;j<s2.length;j+)if(s2.chj!=s1.chi+j)k=0;break;if(k)Deletestring(s1,i+1,i+
37、s2.length);tag=1;KMP算法intindex_kmp(stringT,stringS,intpos)_inti=pos,j=1;while(i<=S.length&&jv=T.length)if(S.chi=T.chj)i+;j+;elsej=nextj+1;if(j>T.length)returni-T.length;elsereturn0;voidget_next(stringT)_inti=1,j=0;next1=0;while(i<=T.length)if(j-1=0|T.chi=T.chj)i+;j+;if(T.chi!=T.chj)
38、nexti=j;elsenexti=nextj;elsej=nextj;数组矩阵转置的经典算法for(i=0;i<row;i+)for(j=0;j<col;j+)bji=aij;时间复杂度为0(row*col),每个元素都要存储,相对于稀疏矩阵来说比较浪费存储空间。矩阵转置-利用三元组实现#defineMAX12500假设一个稀疏矩阵最多有12500个非零元typedefstructinti,j;/i,j用于存储矩阵中元素的行、列下标intnum;/num为矩阵中非零元的值Triple;定义一个三元组typedefstructTripledataMAX+1;intmu,nu,tu;
39、/mu,nu非别表示一个稀疏矩阵的行数和列数/tu表示该稀疏矩阵的非零元个数TSMatrix;/矩阵转置,核心算法如下:t.mu=m.nu;t.nu=m.mu;t.tu=m.tu;for(i=0;i<m.nu;i+)for(j=0;j<m.tu;j+)/按列遍历三元组if(m.dataj.j=i)/按列升序存入数组t.datap.i=m.dataj.j;t.datap.j=m.dataj.i;t.datap.num=m.dataj.num;p+;该算法时间复杂度为O(nu*tu),即与该矩阵的列数和非零元个数有关,当tu=mu*nu时,时间复杂度为O(nu2*tu),此时的时间复杂
40、度比一般算法的时间复杂度还要大,因此此算法适用于tuvvmu*nu的情况,此算法相比一般算法节省了存储空间。快速转置算法<改进了时间复杂度>t.tu=m.tu;t.mu=m.nu;t.nu=m.mu;for(i=1;i<=m.nu;i+)numi=0;先使每列上元素的个数为0for(i=0;i<m.tu;i+)numm.datai.j+;遍历三元组求得每列上元素的个数for(i=2;i<=m.nu;i+)cpoti=cpoti-1+numi-1;求得每列上第一个元素在转置矩阵三元组中的存储序号for(i=0;i<m.tu;i+)j=m.datai.j;q=c
41、potj;t.dataq.i=m.datai.j;t.dataq.j=m.datai.i;t.dataq.num=m.datai.num;cpotj+;/当该列上一个元素存储完时序号加1该算法时间复杂度0(nu+tu),这种算法称为快速转置算法。利用行逻辑连接顺序表实现矩阵相乘typedefstructinti,j;intnum;Triple;typedefstructTripledataMAXSIZE;intrposMAXRC;存放每行中首个非零元的位置intmu,nu,tu;RLSMatrix;行逻辑连接顺序表的定义intMultMatrix(RLSMatrixm,RLSMatrixn,R
42、LSMatrix&q)/矩阵相乘函数、核心算法intarow,ctempMAXRC,i,tp,p,brow,t,ql,ccol;if(m.nu!=n.mu)returnERROR;q.mu=m.mu;q.nu=n.nu;q.tu=0;if(m.tu*n.tu!=0)for(arow=1;arow<=m.mu;arow+)/按m矩阵中每行进行处理for(i=1;i<=n.nu;i+)ctempi=0;/每行处理开始,使得ctemp置零q.rposarow=q.tu+1;/求矩阵q中rpos的值if(arowvm.mu)tp=m.rposarow+1;elsetp=m.tu+1
43、;求得arow下一行第一个非零所在的位置for(p=m.rposarow;p<tp;p+)依次处理矩阵m中每行上所有的非零元brow=m.datap.j;if(brow<n.mu)t=n.rposbrow+1;elset=n.tu+1;for(ql=n.rposbrow;ql<t;ql+)ccol=n.dataql.j;ctempccol+=m.datap.num*n.dataql.num;for(ccol=1;ccol<=n.nu;ccol+)if(ctempccol)if(+q.tu>MAXSIZE)returnERROR;q.dataq.tu.i=arow;
44、q.dataq.tu.j=ccol;q.dataq.tu.num=ctempccol;returnOK;voidgetrpos(RLSMatrix&m)inti,numMAXRC,j;for(i=1;i<=m.mu;i+)numi=0;先使每行上元素的个数为0for(i=1;i<=m.tu;i+)numm.datai.i+;遍历三元组求得每行上元素的个数for(j=1;j<=m.mu;j+)if(numj!=0)break;m.rposj=1;/j代表第一个非零元数不为零的行的下标for(i=j+1;i<=m.mu;i+)m.rposi=m.rposi-1+nu
45、mi-1;/求得每列上第一个元素在转置矩阵三元组中的存储序号-十字链表/定义typedefstructOLNodeinti,j;/行列下标inte;structOLNode*right,*dowm;OLNode;typedefstructListMatrixOLNode*rhead,*chead;intmu,nu,tu;/行数、列数、非零元个数ListMatrix;/将结点插入十字链表表示的矩阵中voidInsertMatrix(OLNode*t,ListMatrix&q)OLNode*rpre,*cpre,*p;inti,tag;p=(OLNode*)malloc(sizeof(OL
46、Node);p->i=t->i;p_>j=t->j;p->e=t->e;rpre=&q.rheadp->i;cpre=&q.cheadp->j;for(i=1;i<q.nu+1;i+)tag=1;if(rpre->right=NULL|rpre->right->j>p->j)break;if(rpre->right->j=p->j)tag=O;break;rpre=rpre->right;/找到指针rpre的位置while(1)if(cpre->dowm=NULL|
47、cpre->dowm->i>i)break;cpre=cpre->dowm;/找到cpre的位置if(tag)/判断该要出入的结点所在的行是否已经存在元素p->right=rpre->right;rpre->right=p;p->dowm=cpre->dowm;cpre->dowm=p;elseif(rpre->right->e+p->e=O)if(rpre->right!=NULL)rpre->right=rpre->right->right;if(cpre->dowm!=NULL)c
48、pre->dowm=cpre->dowm->dowm;if(rpre->right->e+p->e!=O)rpre->right->e+=p->e;/用十字链表存储矩阵voidCreatMatrix(ListMatrix&m)intm1,n,t,i;OLNode*p,*rpre,*cpre;printf("请输入矩阵的行数、列数、非零元个数:");scanf("%d%d%d",&m1,&n,&t);m.mu=m1;m.nu=n;m.tu=t;m.rhead=(OLNod
49、e*)malloc(m1+1)*sizeof(OLNode);m.chead=(OLNode*)malloc(n+1)*sizeof(OLNode);for(i=1;i<m1+1;i+)m.rheadi.right=NULL;for(i=1;i<n+1;i+)初始化指针的值m.cheadi.dowm=NULL;printf("请输入这d个非零元:n",m.tu);for(i=0;i<m.tu;i+)p=(OLNode*)malloc(sizeof(OLNode);if(!p)exit(1);scanf("%d%d%d",&p-&
50、gt;i,&p->j,&p->e);InsertMatrix(p,m);广义表2013/09/01广义表的构造及递归遍历/广义表的定义用到串的一些操作,上述已有串的定义在此不再叙述typedefenumATOM,LISTElemTag;typedefstructGLNodeElemTagtag;unioncharatom;structstructGLNode*hp,*tp;ptr;/若atom占用内存则表明为原子结点,否则ptr占用内存为表结点*Glist;广义表结点结构的定义voidSubString(Sstring&A,Sstring&B,int
51、i,intn)/取子串操作/将B串中从第i个字符起长度为n的字符串复制到A中intj=0,m=0;for(j=i;j<i+n;j+)A.chm+=B.chj;A.chm='0'A.length=m;voidSeverGlist(Sstring&str,Sstring&hstr)/将非空串(广义表形式的串)str中第一个逗号之前的/字符置给hstr,剩余的字符(除去该逗号)留在str中SstringCh;inti=0,k=0,n=str.length;InitString(Ch);doi+;ClearString(Ch);lnitString(Ch);Sub
52、String(Ch,str,i-1,1);每次取一个字符至Ch串中if(Ch.ch0='(')k+;elseif(Ch.ch0=')')k-;while(i<n&&(Ch.ch0!=','|k!=0);if(i<n)SubString(hstr,str,0,i-1);SubString(str,str,i,n-i);elsestrcpy(hstr.ch,str.ch);hstr.length=str.length;ClearString(str);voidCreatGlist(Glist&L,Sstring&a
53、mp;S)/广义表的构造/采用头尾链表存储结构,由广义表书写形式串S定义广义表Glistp,q;Sstringsub,hsub;InitString(sub);InitString(hsub);if(strcmp(S.ch,"()")=O)L=NULL;elseif(!(L=(Glist)malloc(sizeof(GLNode)exit(1);if(S.length=1)/若为单个字符即原子L->tag=ATOM;L->atom=S.ch0;elseL->tag=LIST;p=L;/L为表头SubString(sub,S,1,S.length-2);脱去
54、外层括号doSeverGlist(sub,hsub);从sub中分离出表头串hsubCreatGlist(p->ptr.hp,hsub);q=p;if(!StringEmpty(sub)p=(Glist)malloc(sizeof(GLNode);p->tag=LIST;q->ptr.tp=p;while(!StringEmpty(sub);q->ptr.tp=NULL;printf("广义表构造成功!n");voidTraverseGlist(Glist&L)/递归遍历广义表Glistp;if(L)p=L;if(p->tag=ATOM
55、)printf("%c",p->atom);elsewhile(p)TraverseGlist(p->ptr.hp);p=p->ptr.tp;求广义表的深度、利用递归2013/09/02intGlistDepth(Glist&L)/递归求广义表的深度Glistp;intdepth,max=0;if(!L)return1;/空表的深度为1if(L->tag=ATOM)return0;/原子的深度为0for(p=L;p;p=p->ptr.tp)depth=GlistDepth(p->ptr.hp);if(maxvdepth)max=d
56、epth;/找出各子表中深度的最大值returnmax+1;/广义表的深度为各子表中深度最大的加1广义表的复制2013、09、02voidCopyGlist(Glist&T,GlistL)/广义表的复制,将表L复制到表T中/利用递归实现if(!L)T=NULL;若为空elseT=(Glist)malloc(sizeof(GLNode);T->tag=L->tag;if(L->tag=ATOM)/若为原子结点T->atom=L->atom;elseif(L->tag=LIST)/若为表结点CopyGlist(T->ptr.hp,L->ptr
57、.hp);CopyGlist(T->ptr.tp,L->ptr.tp);非线性数据结构/-树、二叉树/-图/20130916/用二叉链表描述二叉树、并用递归实现二叉树的三种遍历操作typedefstructBTreeintdata;structBTree*lchild,*rchild;BiTNode,*BiTree;voidCreatBinaryTree(BiTree&T)/构造一个二叉树(递归定义)intch;/以0表示空树printf("输入结点:");scanf("%d",&ch);if(ch=0)T=NULL;约定值为零的结点为空elseT=(BiTNode*)malloc(sizeof(BiTNode);if(!T)exit(1);T->data=ch;CreatBinaryTree(T->lchild);递归CreatBinaryTree(T->rchild);voidVistT
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2024年度PVC管材节能环保管道系统购销合同2篇
- 2024年典当行信用借款协议3篇
- 2024年度光伏电站施工队用工合同范本2篇
- 2024年度特许经营合同及品牌使用协议3篇
- 2024版二手房买卖合同A3-带车位及装修带泳池住宅买卖协议3篇
- 2024年度医疗设备采购与维护合同标的为高端医疗设备及服务3篇
- 黄岛租房合同范例
- 2024年建筑钢筋植筋工程施工合作合同版
- 2024年度珠宝首饰加工销售合同3篇
- 2024年度郑州市房屋交易合同3篇
- 2023年注册城乡规划师考试:城乡规划相关知识历年真题汇编(共388题)
- 九型人格之职场心理学习通超星期末考试答案章节答案2024年
- 医疗器械监督管理条例知识竞赛考试题及答案
- (工作计划)非物质文化遗产保护方案
- 大学生国家安全教育学习通超星期末考试答案章节答案2024年
- 人力资源岗位招聘笔试题及解答(某大型央企)
- 公园广场保洁管理服务投标方案(技术方案)
- 2024届上海高考语文课内古诗文背诵默写篇目(精校版)
- 幂函数 说课课件-2024-2025学年高一上学期数学人教A版(2019)必修第一册
- 艾滋病的预防与宣传教育课件
- 出境水果包装厂注册登记申请表模板
评论
0/150
提交评论