import java.util.*;

/*
 * public class ListNode {
 *   int val;
 *   ListNode next = null;
 *   public ListNode(int val) {
 *     this.val = val;
 *   }
 * }
 */

public class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     *
     * @param head ListNode类
     * @return ListNode类
     */
    public ListNode find_circular_fence (ListNode head) {
        HashSet<Integer> hashSet = new HashSet<>();
        while (head != null) {
            if (hashSet.contains(head.val)) {
                return head;
            }
            hashSet.add(head.val);

            head = head.next;
        }
        return null;
    }
}

本题知识点分析:

1.哈希表

2.链表

3.数学模拟

本题解题思路分析:

1.哈希表存放数值

2.如果出现重复节点值,直接返回该结点,否则返回null

本题使用编程语言: Java