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

链表反转

时间:2016-09-20 11:47:09      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:

链表反转简单实现

Node* rever(Node* Head)
{   
    if(Head == NULL || Head->next == NULL)
        return Head;
    Node* cur, next, next_next;
    cur = Head; 
    next = cur->next;
    while(cur->next != NULL){
        next_next = next->next;
        next->next = cur;
        cur = next;
        next = next_next;
    }
    Head->next = NULL;
    return cur;
}

  

链表反转

标签:

原文地址:http://www.cnblogs.com/chengsheng/p/5887968.html

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