【leetcode】141. Linked List Cycle 解題報告

判斷鏈表中是否含有環。 方法一 最好的也是大家都知道的方法,用快慢指針法,如果慢指針能遇到快指針說明鏈表中有環 class Solution(object): def hasCycle(self, head): """ :type head: ListNode :rtype: bool """ if head == None: ret
相關文章
相關標籤/搜索