public class Solution { public ListNode ReverseList(ListNode head) { if (head == null || head.next == null) { return head;} ListNode node = ReverseList(head.next); head.next.next = head; head.next = null; return node; } } 递归法:一开始对反转的操作理解不了,可能是太菜了,然后想了...