当前位置:网站首页>笔试面试题目:判断单链表是否有环
笔试面试题目:判断单链表是否有环
2020-11-08 10:30:00 【osc_ezb5qfcz】
原文发表于:
之前在U公司的笔试中,碰到这样一个问题:
判断单链表是否有环。
首先来看这样一个常识:现实中的环路与单链表的环路,有什么不同呢?
显然:现实中的环路,可以有两个方向,要么循环,要么逃出。然而,在单链表中,指针next只可能有一个指向,所以环路链表必定永远循环,没有出口。如下图所示:
回到问题本身,怎么判断单链表是否有环呢?
算法1:标记法
最容易想到的肯定是标记法。遍历链表时,对访问过的结点做记录。如果是环状单链表,则必然有结点被重复访问。这种思路是非常自然的。
做标记时,可考虑用hash map或者hash set, 需要耗费一些空间。由于思路比较明确,所以就没有必要详细介绍程序了。
算法2:暴力算法
暴力,也是解决问题的一种思路,尽管不一定是最好的方式。
可以这么考虑:一路走到黑,如果到了终点,则没有环,如果没有到达终点,则说明在环中不停绕圈。
我刚才在leetcode上做了一下这个题目,用的是暴力法,能通过所有测试用例,代码如下:
/**
* Definition for singly-linked list.
* type ListNode struct {
* Val int
* Next *ListNode
* }
*/
func hasCycle(head *ListNode) bool {
count := 0
max := 12000
for ; head != nil && count < max; {
count++
head = head.Next
}
if count == max {
return true
}
return false
}
一看就知道,这种暴力算法是有局限性的:比如,如果链表足够长,也会导致count和max相等,可能会误判的。
算法3:快慢指针
摩托车在后,自行车在前,摩托车追赶自行车,如果是一个没有出路的环形路,那么摩托车必然会追上自行车。
所以,我们可以采用类似思路,让快指针在后,慢指针在前,可以判断单链表是否带环。这种方法的好处是,空间复杂度是O(1),且不会出现误判。
既然知道了思路,写程序就是很简单的事情了,故不再赘述。
周末愉快,下周再聊,不见不散。
版权声明
本文为[osc_ezb5qfcz]所创,转载请带上原文链接,感谢
https://my.oschina.net/u/4309139/blog/4707995
边栏推荐
- Solve Safari browser download file name garbled problem
- Is software testing training class easy to find a job
- Astra: Apache Cassandra的未来是云原生
- 模板链表类学习
- Japan PSE certification
- Improvement of rate limit for laravel8 update
- IQKeyboardManager 源代码看看
- 我们采访了阿里云云数据库SQL Server的产品经理,他说了解这四个问题就可以了...
- 数据科学面试应关注的6个要点
- 比Python快20%,就问你兴不兴奋?
猜你喜欢
Ulab 1.0.0 release
FORTRAN 77 reads some data from the file and uses the heron iteration formula to solve the problem
Visual Studio 2015 未响应/已停止工作的问题解决
Python3.9的7个特性
Cloud alibabab notes come out, the whole network detailed explanation only this one hand is slow
An error occurred while starting the kernel was successfully resolved
分布式共识机制
PCIe enumeration process
ASP.NET A complete solution based on exception handling in MVC
Face recognition: attack types and anti spoofing techniques
随机推荐
Review the cloud computing application scenarios you didn't expect (Part 1)
Adobe Prelude /Pl 2020软件安装包(附安装教程)
Recommend an economic science video, very valuable!
分布式共识机制
函数周期表丨筛选丨值丨SELECTEDVALUE - 知乎
ts流中的pcr与pts计算与逆运算
不多不少,大学里必做的五件事(从我的大一说起)
How does spotify drive data-driven decision making?
Iqkeyboardmanager source code to see
技术人员该如何接手一个复杂的系统?
PX4添加新的应用
Improvement of rate limit for laravel8 update
5g + Ar out of the circle, China Mobile Migu becomes the whole process strategic partner of the 33rd China Film Golden Rooster Award
[data structure Python description] use hash table to manually implement a dictionary class based on Python interpreter
An error occurred while starting the kernel was successfully resolved
Can you do it with only six characters?
sed之查找替换
We interviewed the product manager of SQL server of Alibaba cloud database, and he said that it is enough to understand these four problems
[computer network] learning notes, Part 3: data link layer (Xie Xiren version)
年轻一代 winner 的程序人生,改变世界的起点藏在身边