LeetCode 第206题:反转链表

2020-09-23  本文已影响0人  放开那个BUG

1、前言

题目描述

2、思路

老题了。

3、代码

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode reverseList(ListNode head) {
        if(head == null){
            return head;
        }

        ListNode q = head.next;
        ListNode p = q;
        head.next = null;
        while(q != null){
            p = q.next;
            q.next = head;
            head = q;
            q = p;
        }

        return head;
    }
}
上一篇下一篇

猜你喜欢

热点阅读