返回两个链表相交节点若无返回null - java链表题练习

给定两个可能有环也可能无环的单链表,头节点head1 和head2.请实现一个函数,如果两个链表相交,请返回相交的第一个节点,如果不相交,返回null
思路:
两个链表有3种情况:

  1. 两个链表都没有环
  2. 一个链表有环,另外一个没有
  3. 两个链表都有环

代码如下`

public Node getLoopNode(Node head1 , Node head2){
	if(head1 == null || head2 == null){
		return null;
	}
	Node loop1 = getLoop(head1);
	Node loop2 = getLoop(head2);
	//两个链表都没有环
	if(loop1 == null && loop2 == null){
		return noLoop(head1 , head2); 
	}
	//两个链表都有环
	if(loop1 != null && loop2 != null){
	 	return hasLoop(head1 , loop1 , head2 , loop2 ); 
	}

	// 对于一个链表有环,另外一个没有的情况
	return null;
}

public Node getLoop(Node head){
	if(head == null || head.next == null || head.next.next == null){
		return null;
	}
	Node fast = head.next.next;
	Node low = head.next;
	while(fast != low ){
		if(fast.next == null || fast.next.next == null){
		 	return null;
		}
		fast = fast.next.next;
		low = low.next; 
	}
	fast = head;
	while(fast != low){
		fast = fast.next;
		low = low.next; 
	}
	return fast;
	
}
public Node noLoop(Node head1 , Node head2){
	Ndoe 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; 
	}
	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;
}

public Node hasLoop(Node head1 , Node loop1 ,Node head2 , Node loop2){
	Node p1 = head1;
	Node p2 = head2;
	if(loop1 == loop2 ){
		int n = 0;
		while(p1 != loop1){
			n++;
			p1 = p1.next; 
		} 
		while(p2 != loop1){
			n--;
			p2 = p2.next; 
		} 
		p1 = n > 0 ? head1 : head2;
		p2 = p1 ==head1 ? head2: head1;
		n = Math.abs(n);
		while(n>0){
			p1 = p1.next; 
		}
		while(p1 !=p2){
			p1 = p1.next;
			p2 = p2.next; 
		}
		return p1;
	}else{
		Node l1 = loop1;
		l1 = l1.next;
		while(l1 != loop1){
			if(l1 == loop2){
				return loop1; 
			} 
			l1 = l1.next;
		} 
		return null;
	}
	
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值