博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode Linked List Cycle
阅读量:5356 次
发布时间:2019-06-15

本文共 1419 字,大约阅读时间需要 4 分钟。

/** * 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) {        if (head == NULL) return false;        ListNode* fast = head;        ListNode* slow = head;        while (step(fast, 2) && step(slow, 1)) {            if (fast == slow) break;        }        return fast != NULL;    }        bool step(ListNode* &node, int n) {        while (node != NULL && n > 0) {            node = node->next;            n--;        }        return n == 0;    }};

水一发

第二轮:

Given a linked list, determine if it has a cycle in it.

Follow up:

Can you solve it without using extra space?

必做题

1 /** 2  * Definition for singly-linked list. 3  * struct ListNode { 4  *     int val; 5  *     ListNode *next; 6  *     ListNode(int x) : val(x), next(NULL) {} 7  * }; 8  */ 9 class Solution {10 public:11     bool hasCycle(ListNode *head) {12         if (head == NULL) {13             return false;14         }15         ListNode* fast = head->next;16         ListNode* slow = head;17         while (fast != NULL && fast->next != NULL) {18             if (fast == slow) {19                 break;20             }21             slow = slow->next;22             fast = fast->next->next;23         }24         return fast == slow;25     }26 };

 

转载于:https://www.cnblogs.com/lailailai/p/3805549.html

你可能感兴趣的文章
上海淮海中路上苹果旗舰店门口欲砸一台IMAC电脑维权
查看>>
Google透露Android Market恶意程序扫描服务
查看>>
给mysql数据库字段值拼接前缀或后缀。 concat()函数
查看>>
迷宫问题
查看>>
【FZSZ2017暑假提高组Day9】猜数游戏(number)
查看>>
泛型子类_属性类型_重写方法类型
查看>>
练习10-1 使用递归函数计算1到n之和(10 分
查看>>
Oracle MySQL yaSSL 不明细节缓冲区溢出漏洞2
查看>>
Code Snippet
查看>>
zoj 1232 Adventure of Super Mario
查看>>
组合数学 UVa 11538 Chess Queen
查看>>
oracle job
查看>>
Redis常用命令
查看>>
[转载]电脑小绝技
查看>>
windos系统定时执行批处理文件(bat文件)
查看>>
thinkphp如何实现伪静态
查看>>
BZOJ 2243: [SDOI2011]染色( 树链剖分 )
查看>>
BZOJ 1925: [Sdoi2010]地精部落( dp )
查看>>
c++中的string常用函数用法总结!
查看>>
[DLX精确覆盖+打表] hdu 2518 Dominoes
查看>>