public class Solution { public ListNode ReverseList(ListNode head) { if(head == null || head.next == null) { return head; } ListNode newHead = ReverseList(head.next); // 递归出栈时链接节点 head.next.next = head; head.next = null; return newHead; ...