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

反转链表 --剑指offer

时间:2014-08-25 16:48:44      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   div   log   sp   new   size   

题目:定义一个函数,输入一个链表的头结点,反转该链表并输出反正后链表的头结点。

 

#include<stdio.h>
#include<malloc.h>

typedef struct node
{
    int Element;
    struct node *Link;
}Node;


Node *ReverseList(Node *first)
{
    Node *NewFirst,*p;
    if(first==NULL||first->Link==NULL)
    {
        return first;
    }
    NewFirst=first;
    while(first->Link!=NULL)
    {
        p=first->Link;
        first->Link=p->Link;
        p->Link=NewFirst;
        NewFirst=p;
    }
    return NewFirst;

}

void main()
{    
    int i=0;
    Node *p,*q,*first=NULL;
    while(i<10)
    {
        p=(Node*)malloc(sizeof(Node));
        p->Element=i;
        if(!first)
        {
            first=p;
            first->Link=NULL;
        }
        else
        {
            p->Link=first;
            first=p;
        }
        i++;
    }
    q=first;
    while(q)
    {
        printf("%d,",q->Element);
        q=q->Link;
        
    }
    printf("\n");

    p=ReverseList(first);
    while(p!=NULL)
    {
        printf("%d,",p->Element);
        p=p->Link;
    }
    
}

 

反转链表 --剑指offer

标签:style   blog   color   io   div   log   sp   new   size   

原文地址:http://www.cnblogs.com/rolly-yan/p/3935077.html

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