/**
* 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) {
const visited = new Set()
let temp = headA
while (temp !== null) {
visited.add(temp)
temp = temp.next
}
temp = headB
while (temp !== null) {
if (visited.has(temp)) {
return temp
}
temp = temp.next
}
return null
};
如希望撰写评论,请发邮件至 me@tianhegao.com (直接点击邮箱可自动跳转至默认邮箱App,并填写收信人和邮件主题)或者点击这里在线留言,我会挑选对读者有价值的评论附加到文章末尾。
可通过以下渠道赞赏此文
- 爱发电
- Paypal(定额 5 美元)