首页 > 其他 > 详细

倒序单链表

时间:2017-04-21 23:44:37      阅读:199      评论:0      收藏:0      [点我收藏+]
#include<stdio.h>
#include<stdlib.h>
struct link 
{
    int data;
    struct link *next;
};
struct link *invent(void);
void outp(struct link *head);
int main()
{
    struct link *head,*p;
    head=invent();
    p=head;
    outp(p);
    return 0;
}
struct link *invent (void)
{
    struct link *head=NULL,*tail,*new;
    int icount=0;
    while(1)
    {
        printf("请输入第%d个结点:",icount+1);
        new=(struct link *)malloc(sizeof(struct link));
        scanf("%d",&new->data );
        if(new->data ==-1)
        {
            free(new);
            return head;
        }
        else
        {
            icount++;
            if(icount  == 1)
            {
                head=tail=new;
                tail->next =NULL;
            }
            else
            {
                new->next=head;
                head=new;
            }
        }
    }
}
void outp(struct link *head)
{
    struct link *p=head;
    while(p)
    {
        printf("%d\n",p->data);
        p=p->next;
    } 
}

 

倒序单链表

原文:http://www.cnblogs.com/TX980502/p/6746551.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!