206. 反转链表

206. 反转链表_第1张图片

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode() : val(0), next(nullptr) {}
 *     ListNode(int x) : val(x), next(nullptr) {}
 *     ListNode(int x, ListNode *next) : val(x), next(next) {}
 * };
 */
class Solution {
public:
    ListNode* reverseList(ListNode* head) {
        ListNode *temp;
        ListNode *p=NULL;
        ListNode *q=head;
        while(q){
            temp=q->next;
            q->next=p;
            p=q;
            q=temp;
        }
        return p;
    }
};

你可能感兴趣的:(力扣刷题,快慢指针,链表,数据结构)