码迷,mamicode.com
首页 > 其他好文 > 详细

带头结点的单链表的创建

时间:2019-02-01 23:02:30      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:printf   nod   def   eof   next   \n   nbsp   创建   oid   

#include <stdio.h>
#include <stdlib.h>
typedef struct Node
{
    int data;
    struct Node *next;
}Node;
Node* CreatList(int n)
{
    Node *head,*p,*q;
    head=(Node*)malloc(sizeof(Node));
    q=head;
    for(int i=0;i<n;i++)
    {
        p=(Node*)malloc(sizeof(Node));
        scanf("%d",&p->data);
        p->next=NULL; 
        q->next=p;
        q=p;
    }
    return head;
}
void Print(Node *head)
{
    Node *p=head->next;
    while(p!=NULL)
    {
        printf("%d\n",p->data);
        p=p->next;
    }
}
int main()
{
    int n;
    scanf("%d",&n);
    Node *p=CreatList(n);
    Print(p);
} 

 

带头结点的单链表的创建

标签:printf   nod   def   eof   next   \n   nbsp   创建   oid   

原文地址:https://www.cnblogs.com/xyfs99/p/10347219.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!