欢迎来到天天文库
浏览记录
ID:17329095
大小:25.00 KB
页数:6页
时间:2018-08-30
《吉林大学2002年考研c语言程序设计答案真题》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、吉林大学2002年考研c语言程序设计答案真题真题网提供2002-1/*====================================================================================*//*函数名称:2002_1.c *//*程序目的:递归地将一个数插入一个准递增序列,且插入完毕后仍然保持准递增特性 *//*WritenbyApechn,SoftLab
2、ofJLU *//*====================================================================================*/#includestructnode//定义链表结点结构,在最前面给出{ intnum; node*next;}node*insert(node*head,intn)//题目要求的函数{ node*p; if(n<=head->num)//若n已经到了准递增序列的合适的位置,递归出口 { p
3、=(node*)malloc(sizeof(node));//新建一个节点用来存放n p->num=n; p->next=head; head=p; } else insert(head->next,n);//否则递归插入 returnhead;}2002-1/*=============================================================================*//*函数名称:2002_2.c *//*函数目的:求给定序列的最长
4、递增子序列的长度 *//*WritenbyApechn,SoftLabofJLU *//*=============================================================================*/#includeconstintN=8;intMaxLeng(inta[]){beconsistentwithinthesamedisk.Alternateunifiedcorerequirementsplaced
5、ontheterminalstripterminals,onlineidentityandensurethecoppercoreisnotexposed.6.4.6enclosurewithinthesametothecablecoreprovidesbindingintoacircle,harnesstiespacingisgenerally100mm;branchofficesshallbebindingonbothends,eachcore inti,len=1,lmax=1; for(i=1;i6、>=a[i-1])//如果满足递增子序列的定义,len增一 { len++; contnue; } if(lamx7、 *//*WritenbyApechn,SoftLabofJLU *//*=============================================================================*/#includestructnode//定义链表结点结构,在最前面给出{ intnum; node*next;}intismember(inta,node*head)//子函数,判断整数a是不是在以head为头结点的链表中{ intsign=08、;//如果在,返回1,否则返回0 node*p=head; if(p==NULL)//注意集合为空集的情况 returnsign; w
6、>=a[i-1])//如果满足递增子序列的定义,len增一 { len++; contnue; } if(lamx7、 *//*WritenbyApechn,SoftLabofJLU *//*=============================================================================*/#includestructnode//定义链表结点结构,在最前面给出{ intnum; node*next;}intismember(inta,node*head)//子函数,判断整数a是不是在以head为头结点的链表中{ intsign=08、;//如果在,返回1,否则返回0 node*p=head; if(p==NULL)//注意集合为空集的情况 returnsign; w
7、 *//*WritenbyApechn,SoftLabofJLU *//*=============================================================================*/#includestructnode//定义链表结点结构,在最前面给出{ intnum; node*next;}intismember(inta,node*head)//子函数,判断整数a是不是在以head为头结点的链表中{ intsign=0
8、;//如果在,返回1,否则返回0 node*p=head; if(p==NULL)//注意集合为空集的情况 returnsign; w
此文档下载收益归作者所有