题解 | #两个链表的第一个公共结点#

两个链表的第一个公共结点

https://www.nowcoder.com/practice/6ab1d9a29e88450685099d45c9e31e46

/*
struct ListNode {
	int val;
	struct ListNode *next;
	ListNode(int x) :
			val(x), next(NULL) {
	}
};*/
class Solution {
public:
	// 两个链表的第一个公共结点
    ListNode* FindFirstCommonNode( ListNode* pHead1, ListNode* pHead2) {
		if(pHead1 == nullptr || pHead2 == nullptr) return nullptr;
        ListNode* p = pHead1, *q = pHead2;
		
		while(p != q){
			p = p==nullptr ? pHead1 : p->next;
			q = q==nullptr ? pHead2 : q->next; 
		}
		
		if(p==nullptr) return nullptr;
		
		return p;



    }
};

循环遍历,直到两个指针相等,如果都为nullptr则没有合并结点,否则就定位到合并结点

全部评论

相关推荐

叮咚鸭:群众里面有坏人
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务