We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
160. 相交链表
/** * Definition for singly-linked list. * function ListNode(val) { * this.val = val; * this.next = null; * } */ /** * @param {ListNode} headA * @param {ListNode} headB * @return {ListNode} */ var getIntersectionNode = function(headA, headB) { let A = headA, B = headB, checkA = true, checkB = true; while(A || B) { if(A && B && (A == B)) { return A; } if(A) { A = A.next }else if(checkA) { A = headB; checkA = false; } if(B) { B = B.next }else if(checkB){ B = headA; checkB = false; } } return null; };
The text was updated successfully, but these errors were encountered:
No branches or pull requests
160. 相交链表
The text was updated successfully, but these errors were encountered: