题解 | #判断链表中是否有环#

判断链表中是否有环

https://www.nowcoder.com/practice/650474f313294468a4ded3ce0f7898b9

#include <stdbool.h>
/**
 * struct ListNode {
 *	int val;
 *	struct ListNode *next;
 * };
 */

/**
 * 
 * @param head ListNode类 
 * @return bool布尔型
 */
bool hasCycle(struct ListNode* head ) {
    // write code here
    if((head==NULL)||(head->next==NULL)){
        return false;
    }
    struct ListNode *fast=head;
    struct ListNode *slow=head;
    while(1){
        fast=fast->next;
        fast=fast->next;
        slow=slow->next;
        if(fast==slow){
            return true;
        }
        if((fast==NULL)||(fast->next==NULL)){
            return false;
        }
    }
}

快慢指针判断

全部评论

相关推荐

11-27 17:35
已编辑
蚌埠坦克学院 C++
深信服 后台开发 n×12
点赞 评论 收藏
分享
牛客868257804号:九个中铁八个中建
点赞 评论 收藏
分享
威猛的小饼干正在背八股:挂到根本不想整理
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务