目 录CONTENT

文章目录

35. 反转链表

Gz
Gz
2022-07-01 / 0 评论 / 0 点赞 / 182 阅读 / 632 字 / 正在检测是否收录...

35. 反转链表

定义一个函数,输入一个链表的头结点,反转该链表并输出反转后链表的头结点。

思考题:

  • 请同时实现迭代版本和递归版本。

数据范围

链表长度 [0,30][0,30]。

样例

输入:1->2->3->4->5->NULL

输出:5->4->3->2->1->NULL

题解:

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

运行结果:

image-20220701133958569

题解(递归)

QQ图片20210318162251.png

35

class Solution {
    public ListNode reverseList(ListNode head) {
        if (head == null || head.next == null) return head;
        ListNode tial = reverseList(head.next);
        head.next.next = head;
        head.next = null;
        return tial; 
    }
}
0

评论区