写点什么

单向链表合并节点

用户头像
chenzt
关注
发布于: 2020 年 07 月 29 日

有两个单向链表(链表长度分别为 m,n),这两个单向链表有可能在某个元素合并,如下图所示的这样,也可能不合并。现在给定两个链表的头指针,在不修改链表的情况下,如何快速地判断这两个链表是否合并?如果合并,找到合并的元素,也就是图中的 x 元素。

请用(伪)代码描述算法,并给出时间复杂度和空间复杂度。



public ListNode getIntersectionNode(ListNode head1, ListNode head2) {
if (head1 == null || head2 == null) return null;
ListNode node1 = head1, node2 = head2;
while (node1 != node2) {
node1 = node1 == null ? head2 : node1.next;
node2 = node2 == null ? head1 : node2.next;
}
return node1;
}
//时间复杂度 O(m+n)



用户头像

chenzt

关注

还未添加个人签名 2018.05.15 加入

还未添加个人简介

评论

发布
暂无评论
单向链表合并节点