链表:
struct ListNode {
int val;
struct ListNode *next;
};
快慢指针就是指指针每次移动的速度不一样,一般快指针每次移动两步,慢指针移动一步。
既然快慢指针移动的速度
2020-05-12