JZ15 reverse linked list

Title description

Input a linked list, after inverting the linked list, output the header of the new linked list.

/*
public class ListNode {
    int val;
    ListNode next = null;

    ListNode(int val) {
        this.val = val;
    }
}*/
public class Solution {
    
    
    public ListNode ReverseList(ListNode head) {
    
    
        if (head == null) {
    
    
            return null;
        }
        ListNode front =  head;
        ListNode after = head.next;
        ListNode tempNode;
        while (after != null) {
    
    
            tempNode = after.next;
            after.next = front;
            front = after;
            after = tempNode;
        }
        head.next = null;
        return front;
    }
}

Insert picture description here

Guess you like

Origin blog.csdn.net/qq_41620020/article/details/108571244