leetcode刷題 Day09

題目: 代碼: public class Solution { public boolean hasCycle(ListNode head) { //哈希值集合 Set<ListNode> set=new HashSet<>(); while(head!=null){ if(set.contains(head)){
相關文章
相關標籤/搜索