算法:环形链表 II

10 篇文章 0 订阅

leetcode 142题:环形链表
给定一个链表,返回链表开始入环的第一个节点。 如果链表无环,则返回 null。

个人下意识想到的解法:一边遍历,一边将链表的元素存入list,
遍历下去会有两种情况:
1,当node.next 出现在list中,就说明找到了链表的头部,
2,当node.next 为None ,说明这个链表没有环,
当然这个方法简单但是比较耗内存。但比较简单直接

# Definition for singly-linked list.
# class ListNode:
#     def __init__(self, x):
#         self.val = x
#         self.next = None

class Solution:
    def detectCycle(self, head: ListNode) -> ListNode:
        nodelist = []
        now_node = head
        while now_node and now_node not in nodelist:
            nodelist.append(now_node)
            now_node = now_node.next
        if now_node==None:
            res = None
        else:
            res = now_node
        return res

新增方法2:快慢指针 (java)
在这里插入图片描述fast和show的交汇点,作为index2的起点。
head作为index1的起点。
此时index1距离第一个环形入口的举例 = index2 到环形入口的举例 * n

/**
 * Definition for singly-linked list.
 * class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) {
 *         val = x;
 *         next = null;
 *     }
 * }
 */
public class Solution {
    public ListNode detectCycle(ListNode head) {
        if(head==null||head.next==null){
            return null;
        }
        ListNode fast = head.next.next;
        ListNode show = head.next;
        while (fast!=null && show!=null && fast.next!=null){
            if (fast==show){
                ListNode index1 = fast;
                ListNode index2 = head;
                while(index1!=index2){
                    index1 = index1.next;
                    index2 = index2.next;
                }
                return index1;
            }
            fast = fast.next.next;
            show = show.next;
        }
        return null;
    }
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值