背景
在Codewar上刷题碰到检测链表里环的长度(必定有环),构思出一个很短的函数。
题目描述、解题思路
在代码处一目了然
代码
def loop_size(node):
past, length = {}, 0
while past.get(node, None) is None: past[node], length, node = length, length + 1, node.next
return length - past[node]
感想
dict真是一个十分好用的数据结构。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。