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

【LeetCode】27.Linked List—Reverse Linked List l链表逆置

时间:2019-08-29 16:13:39      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:遇到   ati   eve   link   reverse   lis   imp   定义   either   

Reverse a singly linked list.

Example:

Input: 1->2->3->4->5->NULL
Output: 5->4->3->2->1->NULL

Follow up:

A linked list can be reversed either iteratively or recursively. Could you implement both?

思路:

重塑链表,将首结点逐个后移,移动过程中遇到的结点都依次结到链表开头。

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode* reverseList(ListNode* head) {
        ListNode *p=head;        //定义指向头节点的指针
        if(p==NULL) return NULL; //使用前判断是否为空指针
        ListNode *q=p->next;     //定义第二个指针始终指向P的next
        while(p!=NULL&&q!=NULL)
        {
            p->next=q->next;
            q->next=head;
            head=q;
            q=p->next;
        }
        return head;
    }
};

 

【LeetCode】27.Linked List—Reverse Linked List l链表逆置

标签:遇到   ati   eve   link   reverse   lis   imp   定义   either   

原文地址:https://www.cnblogs.com/hu-19941213/p/11429659.html

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