/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) {
* val = x;
* next = null;
* }
* }
*/
public class Solution {
public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
if(headA == null || headB == null)
return null;
ListNode pA = headA, pB = headB;
while( pA != pB ){
pA = pA == null ? headB : pA.next;
pB = pB == null ? headA : pB.next;
}
return pA;
}
}
相关文章
- 11-17160. 相交链表
- 11-17力扣每日一题 160. 相交链表
- 11-17160. 相交链表
- 11-17160. 相交链表
- 11-17160.相交链表
- 11-17Leetcode 160.相交链表
- 11-17160. 相交链表
- 11-17160. 相交链表
- 11-17160. 相交链表
- 11-17力扣 - 160. 相交链表