链表衍生算法题

该博客探讨了如何解决两个可能带有环的单链表相交问题。提出了利用快慢指针寻找环内节点的方法,并详细阐述了无环、一环一无环、双环三种情况下的处理策略,确保在O(N)的时间复杂度和O(1)的空间复杂度下找到相交的第一个节点。具体包括判断链表是否有环、确定入环节点以及在不同环状情况下寻找相交点的算法实现。
摘要由CSDN通过智能技术生成

给定两个可能有环也可能无环的单链表,头节点head1head2。请实现一个函数,如果两个链表相交,请返回相交的 第一个节点。如果不相交,返回null

要求

如果两个链表长度之和为N,时间复杂度请达到O(N),额外空间复杂度 请达到O(1)

1.单链表无环直接到null

2单链表有环如何判断:快慢指针,快走2步,慢走1步,肯定会在X处相遇,则为有环

3单链表入环处如何判断,记录X,将快指针归head,每个指针都依次走1步,会在入环处相遇(数学方法不会证明)

// 找到链表第一个入环节点,如果无环,返回null
	public static Node getLoopNode(Node head) {
		if (head == null || head.next == null || head.next.next == null) {
			return null;
		}
		// n1 慢  n2 快
		Node slow = head.next; 
		Node fast = head.next.next; 
		while (slow != fast) {
			if (fast.next == null || fast.next.next == null) {
				return null;
			}
			fast = fast.next.next;
			slow = slow.next;
		}
		// slow fast  相遇
		fast = head;
		while (slow != fast) {
			slow = slow.next;
			fast = fast.next;
		}
		return slow;
	}

此时来分析这个题目:

1.假如2个NODE都无环

判断1:node1和node2的end节点不相同那么不相交

操作:node1和node2长度看下谁长,假如node1 100 node2 80  那么node1先走20步 2个再一起走

那么第一个相同的地方就是相遇的地方

// 如果两个链表都无环,返回第一个相交节点,如果不想交,返回null
	public static Node noLoop(Node head1, Node head2) {
		if (head1 == null || head2 == null) {
			return null;
		}
		Node cur1 = head1;
		Node cur2 = head2;
		int n = 0;
		while (cur1.next != null) {
			n++;
			cur1 = cur1.next;
		}
		while (cur2.next != null) {
			n--;
			cur2 = cur2.next;
		}
		if (cur1 != cur2) {
			return null;
		}
		// n  :  链表1长度减去链表2长度的值
		cur1 = n > 0 ? head1 : head2; // 谁长,谁的头变成cur1
		cur2 = cur1 == head1 ? head2 : head1; // 谁短,谁的头变成cur2
		n = Math.abs(n);
		while (n != 0) {
			n--;
			cur1 = cur1.next;
		}
		while (cur1 != cur2) {
			cur1 = cur1.next;
			cur2 = cur2.next;
		}
		return cur1;
	}

2假如一个链表有环一个无环不可能相交

3都有环

<1>2个环但是不相交 

<2>2个环相交但是入环节点一个 loop1==loop2

这种的找到入环节点loop 从head到loop 相当于第一种情况 2个都无环 代码同上即可

<3>2个环相交但是入环节点不是一个

<1><3>是一种情况  只要loop1遍历找到loop2了 就是<3>都转会自己了 就是<1>

// 两个有环链表,返回第一个相交节点,如果不想交返回null
	//loop1 第一个入环节点
	//loop2 第一个入环节点
	public static Node bothLoop(Node head1, Node loop1, Node head2, Node loop2) {
		Node cur1 = null;
		Node cur2 = null;
		if (loop1 == loop2) {
			cur1 = head1;
			cur2 = head2;
			int n = 0;
			while (cur1 != loop1) {
				n++;
				cur1 = cur1.next;
			}
			while (cur2 != loop2) {
				n--;
				cur2 = cur2.next;
			}
			cur1 = n > 0 ? head1 : head2;
			cur2 = cur1 == head1 ? head2 : head1;
			n = Math.abs(n);
			while (n != 0) {
				n--;
				cur1 = cur1.next;
			}
			while (cur1 != cur2) {
				cur1 = cur1.next;
				cur2 = cur2.next;
			}
			return cur1;
		} else {
			cur1 = loop1.next;
			while (cur1 != loop1) {
				if (cur1 == loop2) {
					return loop1;
				}
				cur1 = cur1.next;
			}
			return null;
		}
	}



public static Node getIntersectNode(Node head1, Node head2) {
		if (head1 == null || head2 == null) {
			return null;
		}
		Node loop1 = getLoopNode(head1);
		Node loop2 = getLoopNode(head2);
		if (loop1 == null && loop2 == null) {
			return noLoop(head1, head2);
		}
		if (loop1 != null && loop2 != null) {
			return bothLoop(head1, loop1, head2, loop2);
		}
		return null;
	}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

普朗克的朗姆酒

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

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

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

打赏作者

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

抵扣说明:

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

余额充值