- 1、本文档共42页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
C通用范例源代码之数据结构之链表
C通用范例源代码之数据结构之链表
范例1-32 头插法建立单链表
∷相关函数:createlist函数
#include stdio.h
typedef char datatype;
typedef struct node{
datatype data;
struct node *next;
} listnode;
typedef listnode *linklist;
listnode *p;
linklist createlist(void)
{
char ch;
linklist head;
listnode *p;
head=NULL;/*初始化为空*/
ch=getchar( );
while (ch!=\n){
p=(listnode*)malloc(sizeof(listnode));/*分配空间*/
p-data=ch;/*数据域赋值*/
p-next=head;/*指定后继指针*/
head=p;/*head指针指定到新插入的结点上*/
ch=getchar( );
}
return (head);
}
main()
{
linklist newlist=createlist();
do
{
printf(%c\n,newlist-data);
newlist=newlist-next;
}while(newlist!=NULL);
printf(\n);
}
范例1-33 限制链表长度建立长单链表
∷相关函数:createlist函数
#include stdio.h
#define N 4
typedef char datatype;
typedef struct node{
datatype data;
struct node *next;
} listnode;
typedef listnode *linklist;
listnode *p;
linklist createlist(int n)
{
int i;
linklist head;
listnode *p;
head=NULL;
for(i=n;i0;--i)/*指定长度为n,插入次数受限制*/
{
p=(listnode*)malloc(sizeof(listnode));
scanf(%c,p-data);
p-next=head;
head=p;
}
return(head);
}
main()
{
linklist newlist=createlist(N);
do
{
printf(%c,newlist-data);
newlist=newlist-next;
}while(newlist!=NULL);
printf(\n);
}
范例1-34 尾插法建立单链表
∷相关函数:createlist函数
#include stdio.h
#define N 4
typedef char datatype;
typedef struct node{
datatype data;
struct node *next;
} listnode;
typedef listnode *linklist;
listnode *p;
linklist creater()
{
char ch;
linklist head;
listnode *p,*r;
head=NULL;
r=NULL;/*r为尾指针*/
while((ch=getchar())!=\n){
p=(listnode *)malloc(sizeof(listnode));
p-data=ch;
if(head==NULL)
head=p;/*head 指向第一个插入结点*/
else
r-next=p;/*插入到链表尾部*/
r=p;/*r指向必威体育精装版结点,即最后结点*/
}
if (r!=NULL)
r-next=NULL;/*链表尾部结点的后继指针指定为空*/
return(head);
}
main()
{
linklist n
文档评论(0)