-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp23.cpp
95 lines (90 loc) · 2.12 KB
/
p23.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#include<algorithm>
#include<vector>
#include<iostream>
#include<string>
using namespace std;
struct ListNode {
int val;
ListNode *next;
ListNode(int x) : val(x), next(NULL) {}
};
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode* mergeTwoLists(ListNode* l1, ListNode* l2) {
ListNode *p1,*p2;
ListNode *prev,*curr;
ListNode *fakeHead = new ListNode(0);
p1=l1;
p2=l2;
prev=fakeHead;
bool Out=false;
while (p1!=nullptr || p2!=nullptr) {
if (p1==nullptr) {
curr=p2;
p2=p2->next;
Out=true;
}
else if (p2==nullptr) {
curr=p1;
p1=p1->next;
Out=true;
}
else if (p1->val<p2->val) {
curr=p1;
p1=p1->next;
}
else {
curr=p2;
p2=p2->next;
}
prev->next=curr;
prev=curr;
}
curr=fakeHead->next;
delete fakeHead;
return curr;
}
ListNode* mergeKLists(vector<ListNode*>& lists) {
int n=lists.size();
if (n==0) return nullptr;
ListNode *l1,*l2;
for (int i=n-1;i>0;i--)
lists[i-1]=mergeTwoLists(lists[i],lists[i-1]);
return lists[0];
}
};
static const auto io_sync_off = []()
{
// turn off sync
std::ios::sync_with_stdio(false);
// untie in/out streams
std::cin.tie(nullptr);
return nullptr;
}();
int main() {
ListNode *p;
ListNode *l1=new ListNode(1);
p=l1;
p->next=new ListNode(2);p=p->next;
p->next=new ListNode(4);p=p->next;
ListNode *l2=new ListNode(1);
p=l2;
p->next=new ListNode(3);p=p->next;
p->next=new ListNode(4);p=p->next;
vector<ListNode *> vec={l1,l2};
auto res = Solution().mergeKLists(vec);
while (res!=nullptr) {
cout<<res->val<<" ";
res=res->next;
}
cout<<endl;
return 0;
}