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

反转链表

时间:2020-04-18 21:19:56      阅读:50      评论:0      收藏:0      [点我收藏+]

标签:nod   变量   tac   name   stack   tag   cto   lis   node   





#include "stdafx.h"
#include <string>
using namespace std;
#include <vector>
#include <stack>

typedef struct tag_listnode
{
    int data;
    struct  tag_listnode *next;

}listnode;

class Solution
{
public:

    listnode * reseveListnode(listnode *head)
    {
        listnode *node = head;
        listnode *next_node = head->next;

        while (node !=nullptr)
        {
            listnode *temp = next_node->next;  // 保存要断开的节点的下一个阶段,为了保持链表的遍历
            next_node->next = node;            // 翻转链表,将下个节点指向当前节
            //当前节点的头部为null、所以这里nextNode 变成 12-->null
            //同理下一次变成21->12->null
            node = next_node;                  // 更新当前节点变量
            next_node = temp;                  // 更新下个节点变量
        }
        head->next = NULL;                    // 将头部的next指向空,因为当前已经为最后的节点
        return node;
    }

};


int main()
{
    listnode head, node1, node2, node3, node4;
    node1.data = 11;  node1.next = &node2;
    node2.data = 22; node2.next = &node3;
    node3.data = 33; node3.next = &node4;
    node4.data = 44; node4.next = nullptr;
    head.next = &node1;
    Solution sou;
    listnode *result;
    result = sou.reseveListnode(&head);
    return 1;
}

反转链表

标签:nod   变量   tac   name   stack   tag   cto   lis   node   

原文地址:https://www.cnblogs.com/hg07/p/12728109.html

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