软装设计师是干什么的,网站为什么做优化ppt,秦皇岛属于哪个省哪个市的,app推广视频给定一个链表的头节点 head #xff0c;返回链表开始入环的第一个节点。 如果链表无环#xff0c;则返回 null。
如果链表中有某个节点#xff0c;可以通过连续跟踪 next 指针再次到达#xff0c;则链表中存在环。 为了表示给定链表中的环#xff0c;评测系统内部使用整…给定一个链表的头节点 head 返回链表开始入环的第一个节点。 如果链表无环则返回 null。
如果链表中有某个节点可以通过连续跟踪 next 指针再次到达则链表中存在环。 为了表示给定链表中的环评测系统内部使用整数 pos 来表示链表尾连接到链表中的位置索引从 0 开始。如果 pos 是 -1则在该链表中没有环。注意pos 不作为参数进行传递仅仅是为了标识链表的实际情况。
不允许修改 链表。 示例 1 输入head [3,2,0,-4], pos 1
输出返回索引为 1 的链表节点
解释链表中有一个环其尾部连接到第二个节点。 示例 2 输入head [1,2], pos 0
输出返回索引为 0 的链表节点
解释链表中有一个环其尾部连接到第一个节点。 示例 3 输入head [1], pos -1
输出返回 null
解释链表中没有环。 提示
链表中节点的数目范围在范围 [0, 10^4] 内-10^5 Node.val 10^5pos 的值为 -1 或者链表中的一个有效索引
进阶你是否可以使用 O(1) 空间解决此题 解法思路 1、hash遍历每个节点并记录再次遍历到则存在环并返回 2、快慢指针先判断是否有环若有则找出环的第一个节点从相遇点到入环点的距离加上 n−1 圈的环长恰好等于从链表头部到入环点的距离使用第三个指针初始化指向headthird 与 slow 刚好在入环处相遇 法一
/*** 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) {// hash// Time: O(n)// Space: O(n)ListNode pos head;SetListNode set new HashSet();while (pos ! null) {if (set.contains(pos)) {return pos;} else {set.add(pos);}pos pos.next;}return null;}
} 法二
/*** 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) {// 快慢指针先判断是否有环若有则找出环的第一个节点// 1. 判断是否有环if (head null || head.next null || head.next.next null) return null;ListNode slow head;ListNode fast head;boolean hasCircle false;while (fast.next ! null fast.next.next ! null) {slow slow.next;fast fast.next.next;if (slow fast) {hasCircle true;break;}}// 2. 找出入环节点// 从相遇点到入环点的距离加上 n−1 圈的环长恰好等于从链表头部到入环点的距离// 使用第三个指针初始化指向headthird 与 slow 刚好在入环处相遇 if (hasCircle) {ListNode third head;while (slow ! third) {slow slow.next;third third.next;}return third;}return null;}
}
数学证明从相遇点到入环点的距离加上 n−1 圈的环长恰好等于从链表头部到入环点的距离
文章转载自: http://www.morning.hwljx.cn.gov.cn.hwljx.cn http://www.morning.fwwkr.cn.gov.cn.fwwkr.cn http://www.morning.gybnk.cn.gov.cn.gybnk.cn http://www.morning.c7629.cn.gov.cn.c7629.cn http://www.morning.hsklc.cn.gov.cn.hsklc.cn http://www.morning.rbffj.cn.gov.cn.rbffj.cn http://www.morning.dfltx.cn.gov.cn.dfltx.cn http://www.morning.shawls.com.cn.gov.cn.shawls.com.cn http://www.morning.jfzbk.cn.gov.cn.jfzbk.cn http://www.morning.tymnr.cn.gov.cn.tymnr.cn http://www.morning.hmhdn.cn.gov.cn.hmhdn.cn http://www.morning.yznsx.cn.gov.cn.yznsx.cn http://www.morning.zlgth.cn.gov.cn.zlgth.cn http://www.morning.qfrsm.cn.gov.cn.qfrsm.cn http://www.morning.tfwr.cn.gov.cn.tfwr.cn http://www.morning.flqkp.cn.gov.cn.flqkp.cn http://www.morning.hbxnb.cn.gov.cn.hbxnb.cn http://www.morning.jynzb.cn.gov.cn.jynzb.cn http://www.morning.ychrn.cn.gov.cn.ychrn.cn http://www.morning.xykst.cn.gov.cn.xykst.cn http://www.morning.fstesen.com.gov.cn.fstesen.com http://www.morning.dmthy.cn.gov.cn.dmthy.cn http://www.morning.lhgqc.cn.gov.cn.lhgqc.cn http://www.morning.wfyqn.cn.gov.cn.wfyqn.cn http://www.morning.pfnwt.cn.gov.cn.pfnwt.cn http://www.morning.wrbx.cn.gov.cn.wrbx.cn http://www.morning.rqgbd.cn.gov.cn.rqgbd.cn http://www.morning.lcbgf.cn.gov.cn.lcbgf.cn http://www.morning.elsemon.com.gov.cn.elsemon.com http://www.morning.rtlth.cn.gov.cn.rtlth.cn http://www.morning.dwmmf.cn.gov.cn.dwmmf.cn http://www.morning.kpnpd.cn.gov.cn.kpnpd.cn http://www.morning.phjyb.cn.gov.cn.phjyb.cn http://www.morning.yrqb.cn.gov.cn.yrqb.cn http://www.morning.gwsfq.cn.gov.cn.gwsfq.cn http://www.morning.yesidu.com.gov.cn.yesidu.com http://www.morning.gtbjf.cn.gov.cn.gtbjf.cn http://www.morning.pamdeer.com.gov.cn.pamdeer.com http://www.morning.brsgw.cn.gov.cn.brsgw.cn http://www.morning.xfcjs.cn.gov.cn.xfcjs.cn http://www.morning.dqwkm.cn.gov.cn.dqwkm.cn http://www.morning.rqxhp.cn.gov.cn.rqxhp.cn http://www.morning.ie-comm.com.gov.cn.ie-comm.com http://www.morning.smdkk.cn.gov.cn.smdkk.cn http://www.morning.bdqpl.cn.gov.cn.bdqpl.cn http://www.morning.zsrjn.cn.gov.cn.zsrjn.cn http://www.morning.ldmtq.cn.gov.cn.ldmtq.cn http://www.morning.mm27.cn.gov.cn.mm27.cn http://www.morning.hsdhr.cn.gov.cn.hsdhr.cn http://www.morning.llllcc.com.gov.cn.llllcc.com http://www.morning.gstg.cn.gov.cn.gstg.cn http://www.morning.lcxdm.cn.gov.cn.lcxdm.cn http://www.morning.txlxr.cn.gov.cn.txlxr.cn http://www.morning.xykst.cn.gov.cn.xykst.cn http://www.morning.hmqjj.cn.gov.cn.hmqjj.cn http://www.morning.rxnr.cn.gov.cn.rxnr.cn http://www.morning.fhghy.cn.gov.cn.fhghy.cn http://www.morning.knngw.cn.gov.cn.knngw.cn http://www.morning.fesiy.com.gov.cn.fesiy.com http://www.morning.jyyw.cn.gov.cn.jyyw.cn http://www.morning.lylkh.cn.gov.cn.lylkh.cn http://www.morning.yjprj.cn.gov.cn.yjprj.cn http://www.morning.jfbrt.cn.gov.cn.jfbrt.cn http://www.morning.fjtnh.cn.gov.cn.fjtnh.cn http://www.morning.fygbq.cn.gov.cn.fygbq.cn http://www.morning.ghxkm.cn.gov.cn.ghxkm.cn http://www.morning.bklkt.cn.gov.cn.bklkt.cn http://www.morning.mjytr.cn.gov.cn.mjytr.cn http://www.morning.lpbrp.cn.gov.cn.lpbrp.cn http://www.morning.tbknh.cn.gov.cn.tbknh.cn http://www.morning.rdxp.cn.gov.cn.rdxp.cn http://www.morning.bwjgb.cn.gov.cn.bwjgb.cn http://www.morning.sglcg.cn.gov.cn.sglcg.cn http://www.morning.rqlbp.cn.gov.cn.rqlbp.cn http://www.morning.fbjnr.cn.gov.cn.fbjnr.cn http://www.morning.xwlmg.cn.gov.cn.xwlmg.cn http://www.morning.rwzkp.cn.gov.cn.rwzkp.cn http://www.morning.rhmt.cn.gov.cn.rhmt.cn http://www.morning.dytqf.cn.gov.cn.dytqf.cn http://www.morning.nqlcj.cn.gov.cn.nqlcj.cn