首页 > 其他 > 详细

数据结构之链表:双指针问题

时间:2020-04-06 00:34:56      阅读:79      评论:0      收藏:0      [点我收藏+]

链表中的双/多指针问题,环的问题

一、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 = head
 6     slow = head
 7 
 8     while fast is not None and fast.next is not None:
 9         fast = fast.next.next
10         slow = slow.next
11 
12     return slow.value

 

数据结构之链表:双指针问题

原文:https://www.cnblogs.com/liushoudong/p/12350579.html

(1)
(1)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!