每天刷一道牛客题霸-第4天-判断链表中是否有环

题目

https://www.nowcoder.com/practice/650474f313294468a4ded3ce0f7898b9?tpId=190&rp=1&ru=%2Factivity%2Foj&qru=%2Fta%2Fjob-code-high-rd%2Fquestion-ranking

import java.util.*;
/**
 * Definition for singly-linked list.
 * class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) {
 *         val = x;
 *         next = null;
 *     }
 * }
 */
public class Solution {
    public boolean hasCycle(ListNode head) {
        List list = new ArrayList<ListNode>();
        while(head!=null){
            if(list.contains(head)){
                return true;
            }else{
                list.add(head);
                head=head.next;
            }
        }
        return false;
    }
}
#牛客题霸##题解#
全部评论
点赞 回复 分享
发布于 2020-12-01 14:20

相关推荐

01-18 09:26
已编辑
门头沟学院 Java
王桑的大offer:建议中间件那块写熟悉即可,写掌握 面试包被拷打到昏厥
点赞 评论 收藏
分享
评论
2
1
分享

创作者周榜

更多
牛客网
牛客企业服务