2116=数据结构实验之链表一:顺序建立链表

Posted angfe

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2116=数据结构实验之链表一:顺序建立链表相关的知识,希望对你有一定的参考价值。

 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 struct node
 4 {
 5     int data;
 6     struct node*next;
 7 };
 8 int main()
 9 {
10     int n,i;
11     struct node*head,*end,*p;
12     head=(struct node*)malloc(sizeof(struct node));//为head在这个链表中开辟一个空间。
13     head->next=NULL;//一个链表要有结尾。
14     end=head;//用end的移动来确定下一个P。
15     scanf("%d",&n);
16     for(i=0;i<n;i++)
17     {
18         p=(struct node*)malloc(sizeof(struct node));
19         scanf("%d",&p->data);
20         p->next=NULL;
21         end->next=p;
22         end=p;//进行end的移动。
23     }
24     for(p=head->next;p;p=p->next)
25     {
26 
27         printf("%d",p->data);
28         if(p->next!=NULL)printf(" ");
29     }
30     return 0;
31 }

 

以上是关于2116=数据结构实验之链表一:顺序建立链表的主要内容,如果未能解决你的问题,请参考以下文章

数据结构实验之链表三:链表的逆置

数据结构实验之链表五:单链表的拆分

Java数据结构之链表

数据结构之链表(JAVA)

2054=数据结构实验之链表九:双向链表

数据结构之链表