牛客题霸 NC4 判断链表中是否有环

https://www.nowcoder.com/practice/650474f313294468a4ded3ce0f7898b9

解决方案

Go

func hasCycle(head *ListNode) bool {
	// write code here
	ptr1, ptr2 := head, head
	for {
		if ptr2 == nil || ptr2.Next == nil {
			return false
		}
		ptr2 = ptr2.Next.Next
		ptr1 = ptr1.Next
		if ptr1 == ptr2 {
			break
		}
	}
	return true
}


参考文章

上一篇:ORB_SLAM2|ORBextractor::DistributeOctTree|特征点均匀化


下一篇:leetcode(力扣)第十五题:三数之和_C++