摘要:
双指针互换,要考虑一些边界条件,比如链表为空,链表长度为1,链表长度为2.加一个safeGuard可以避开链表长度为2的检测。 1 /** 2 * Definition for singly-linked list. 3 * public class ListNode { 4 * int val; 5 * ListNode next; 6 * ListNode(int x) { 7 * val = x; 8 * next = null; 9 * }10 * }11 */12 public class Solut... 阅读全文