一种非常low的办法: public ListNode ReverseList(ListNode head) { if (head == null) { // 为空情况 return null;  ...