摘要: 链表中的双/多指针问题,环的问题 一、Find the Middle Node 1 def find_middle(lst): 2 assert lst.head is not None and lst.head.next is not None 3 4 head = lst.head 5 fast 阅读全文
posted @ 2020-04-05 23:52 LinBupt 阅读(225) 评论(0) 推荐(0) 编辑