leetcode-141
Posted 世人谓我恋长安,其实只恋长安某
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-141相关的知识,希望对你有一定的参考价值。
Linked List Cycle
Given a linked list, determine if it has a cycle in it.
Follow up:
Can you solve it without using extra space?
此题并不难,声明2个指针一个步长1,一个步长2,互相追逐,如果追上了就说明有循环,就是没有判断链表是否为空卡在那里很多时间。。。不说了。。。
附上c代码:
/* Definition for singly-linked list. struct ListNode { int val; struct ListNode *next; }; */ bool hasCycle(struct ListNode *head) { if(head!=NULL) { struct ListNode *p=head->next; struct ListNode *q=p; while(p!=NULL&&q!=NULL&&q->next!=NULL) { p=p->next; q=q->next->next; if(p==q) return true; } } return false; }
以上是关于leetcode-141的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode141 Linked List Cycle. LeetCode142 Linked List Cycle II
[leetcode]141. Linked List Cycle判断链表是否有环
算法分析如何理解快慢指针?判断linked list中是否有环找到环的起始节点位置。以Leetcode 141. Linked List Cycle, 142. Linked List Cycl(代码