判断一个链表中有没有环

无意中看到一个面试题,做次记录。

可能情况

总结以上可能出现的情况:第一种情况,可以判断是否有一个节点的前一个和后一个是否相等

                                           第二种情况,可以判断是否有节点出现两次

                                            那第三种情况呢???

思考了一会,想出用hashcode,每遍历一个节点count++,并且把节点的hashcode放到set里面,若发现set.size和count不相等,就证明有环

上代码:

public class Node {
    private Node next;
    private String value;

    public Node getNext() {
        return next;
    }

    public void setNext(Node next) {
        this.next = next;
    }

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }
}
public class Test02 {
    public static void main(String[] args) {
        Node node1 = new Node();
        node1.setValue("01");
        Node node2 = new Node();
        node2.setValue("01");
        node2.setNext(node1);

        Node node3 = new Node();
        node3.setValue("01");
        node3.setNext(node2);

        Node node4 = new Node();
        node4.setValue("01");
        node4.setNext(node3);

        Node node5 = new Node();
        node5.setValue("01");
        node5.setNext(node4);
        //node1.setNext(node3);
        traverseList(node5);

    }

    /* 遍历链表 */
   public static void traverseList(Node node) {
        String ptr = node.getValue();
        Integer count=0;
        Set<Integer> stringSet = new HashSet<>();

        if (ptr == null) {
            System.out.println("链表为空\n");
        } else {

            while (node != null) {
                stringSet.add(node.hashCode());
                node = node.getNext();
                count++;
                if (count!=stringSet.size()){
                    System.out.println("*********存在环*******");
                    break;
                }
            }
        }
        if(count==stringSet.size()){
            System.out.println("*****不存在环*******");
        }
    }
}

运行结果:

 总结:无论是单项还是双向的链表,这个方法都可以。

我要刷100道算法题,第三道!!!

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

only-qi

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值