摘要:
PS: 将两个排序链表和将K个排序链表是同一类问题,下面主要从合并两个链表展开到合并K个链表的情况。 合并两个排序链表 #include<iostream> #include <cstring> #include <algorithm> using namespace std; // 类似 归并排序 阅读全文
摘要:
PS: 将两个排序链表和将K个排序链表是同一类问题,下面主要从合并两个链表展开到合并K个链表的情况。 合并两个排序链表 #include<iostream> #include <cstring> #include <algorithm> using namespace std; // 类似 归并排序 阅读全文
|