牛客题霸NC78 Java版答案 题目链接 题目思路以及解释见下面代码的注释 public ListNode ReverseList(ListNode head) { if (head == null) return head; ListNode pre = head;//上一节点 ListNode cur = head.next;//当前节点 ListNode temp;// 临时结点,用于保存当前结点的指针域(即下一结点) while (cur != null) { temp = cur...