加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
54_相交链表.html 659 Bytes
一键复制 编辑 原始数据 按行查看 历史
Sakana 提交于 2023-08-18 16:08 . feat: 相交链表
<script>
/**
* Definition for singly-linked list.
* function ListNode(val) {
* this.val = val;
* this.next = null;
* }
*/
/**
* @param {ListNode} headA
* @param {ListNode} headB
* @return {ListNode}
*/
// https://leetcode.cn/problems/intersection-of-two-linked-lists/description/?envType=study-plan-v2&envId=top-100-liked
var getIntersectionNode = function (headA, headB) {
if (headA === null || headB === null) return null;
let pA = headA,
pB = headB;
while (pA !== pB) {
pA = pA === null ? headB : pA.next;
pB = pB === null ? headA : pB.next;
}
return pA;
};
</script>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化