1. 题目
Given a linked list, determine if it has a cycle in it.
Follow up:
Can you solve it without using extra space?
2.解决方案
思路:用快慢指针来走,如果有环的话,一定会遇到一起。
Given a linked list, determine if it has a cycle in it.
Follow up:
Can you solve it without using extra space?
思路:用快慢指针来走,如果有环的话,一定会遇到一起。
【LeetCode】39. 组合总和
【LeetCode】705. 设计哈希集合
【LeetCode】706. 设计哈希映射
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M