首页 > 代码库 > Leetcode 线性表 Linked List Cycle
Leetcode 线性表 Linked List Cycle
本文为senlie原创,转载请保留此地址:http://blog.csdn.net/zhengsenlie
Linked List Cycle
Total Accepted: 17041 Total Submissions: 48975Given a linked list, determine if it has a cycle in it.
Follow up:
Can you solve it without using extra space?
题意:判断一个链表中是否有环
思路:快慢指针,如果有环,最终快慢指针会在非NULL相遇
注:用到fast->next前先要确保fast非NULL,要用fast->next->next前先要确保fast,fast->next非NULL
复杂度:时间O(n), 空间O(1)
相关题目:Linked List CycleII/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solution { public: bool hasCycle(ListNode *head) { ListNode *fast, *slow; fast = slow = head; while(fast && fast->next){ fast = fast->next->next; slow = slow->next; if(fast == slow) return true; } return false; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。