📌  相关文章
📜  用于合并两个排序链接列表的 Javascript 程序,这样合并的列表顺序相反

📅  最后修改于: 2022-05-13 01:57:44.483000             🧑  作者: Mango

用于合并两个排序链接列表的 Javascript 程序,这样合并的列表顺序相反

给定两个按升序排序的链表。合并它们,使结果列表按降序(倒序)。

例子:

Input:  a: 5->10->15->40
        b: 2->3->20 
Output: res: 40->20->15->10->5->3->2

Input:  a: NULL
        b: 2->3->20 
Output: res: 20->3->2

一个简单的解决方案是执行以下操作。
1)反转第一个列表'a'。
2)反转第二个列表'b'。
3)合并两个反向列表。
另一个简单的解决方案是首先合并两个列表,然后反转合并的列表。
以上两种方案都需要对链表进行两次遍历。

如何在没有反向、O(1) 辅助空间(就地)且仅遍历两个列表的情况下求解?
这个想法是遵循合并样式过程。将结果列表初始化为空。从头到尾遍历两个列表。比较两个列表的当前节点,并在结果列表的开头插入两个中较小的一个。

1) Initialize result list as empty: res = NULL.
2) Let 'a' and 'b' be heads first and second lists respectively.
3) While (a != NULL and b != NULL)
    a) Find the smaller of two (Current 'a' and 'b')
    b) Insert the smaller value node at the front of result.
    c) Move ahead in the list of smaller node. 
4) If 'b' becomes NULL before 'a', insert all nodes of 'a' 
   into result list at the beginning.
5) If 'a' becomes NULL before 'b', insert all nodes of 'a' 
   into result list at the beginning. 

以下是上述解决方案的实现。

Javascript


输出:

List A before merge: 
5 10 15 
List B before merge: 
2 3 20 
Merged Linked List is: 
20 15 10 5 3 2 

时间复杂度: O(N)

辅助空间: O(1)

请参阅有关合并两个排序链表的完整文章,以便合并列表以相反的顺序获取更多详细信息!