0
点赞
收藏
分享

微信扫一扫

链表的反转

林塬 2022-01-09 阅读 40

给你单链表的头节点 head ,请你反转链表,并返回反转后的链表。

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

 

举报

相关推荐

0 条评论