力扣:剑指 Offer 52. 两个链表的第一个公共节点
This commit is contained in:
parent
6db8c8dfe0
commit
c1cc524929
@ -6,6 +6,9 @@ import com.code.leet.entiy.ListNode;
|
|||||||
* 找到两个单链表相交的起始节点。
|
* 找到两个单链表相交的起始节点。
|
||||||
*/
|
*/
|
||||||
public class GetIntersectionNode {
|
public class GetIntersectionNode {
|
||||||
|
/**
|
||||||
|
* 剑指 Offer 52. 两个链表的第一个公共节点
|
||||||
|
*/
|
||||||
public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
|
public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
|
||||||
ListNode pA = headA, pB = headB;
|
ListNode pA = headA, pB = headB;
|
||||||
if(pA == null || pB == null){
|
if(pA == null || pB == null){
|
||||||
|
Loading…
Reference in New Issue
Block a user