-
Notifications
You must be signed in to change notification settings - Fork 0
/
Insert_Sorted_Circular_List.cpp
129 lines (119 loc) · 2.26 KB
/
Insert_Sorted_Circular_List.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
#include "stdafx.h"
#include "iostream"
#include "vector"
#include "string"
#include "map"
#include <algorithm>
#include <stdlib.h>
#include <time.h>
#include <stack>
#include <sstream>
#include <iomanip>
#include <random>
#include <assert.h>
#include <iterator>
#include <queue>
#include <math.h>
#include <vector>
#include <set>
using namespace std;
struct Node{
int val;
Node* next;
Node(int _v):val(_v){}
};
void insertSortedCircularList(Node* &head, int val)
{
if(head==NULL)
{
head=new Node(val);
head->next=head;
return;
}
Node* fast=head;
Node* slow=head;
while(true)
{
fast=fast->next->next;
slow=slow->next;
if(fast==slow)break;
}
fast=head;
while(fast!=slow)
{
fast=fast->next;
slow=slow->next;
}
Node* prev=NULL;
int count=0;
Node* runner=head;
while(true)
{
if(val<=runner->val)
{
Node* tmp=new Node(val);
if(prev==NULL)
{
tmp->next=head;
head=tmp;
}
else
{
tmp->next=runner;
prev->next=tmp;
}
return;
}
else
{
if(runner==fast)count++;
if(count==2)
{
Node* tmp=new Node(val);
tmp->next=runner->next;
runner->next=tmp;
return;
}
prev=runner;
runner=runner->next;
}
}
}
void testNullSortedCircularList()
{
Node* head=NULL;
insertSortedCircularList(head, 1);
assert(head->val==1);
}
void testOneItemInsertSortedCircularList()
{
Node* head=new Node(1);
head->next=head;
insertSortedCircularList(head,2);
assert(head->next->val==2&&head->next->next==head);
}
void testDuplicateInsertSortedCircularList()
{
Node* head=new Node(1);
head->next=new Node(1);
head->next->next=head->next;
insertSortedCircularList(head,2);
assert(head->next->next->val==2&&head->next->next->next==head->next);
}
void testNormalInsertSortedCircularList()
{
Node* head=new Node(1);
head->next=new Node(2);
head->next->next=new Node(4);
head->next->next->next=head->next;
insertSortedCircularList(head, 3);
assert(head->next->next->val==3);
}
int _tmain(int argc, _TCHAR* argv[])
{
testNullSortedCircularList();
testOneItemInsertSortedCircularList();
testDuplicateInsertSortedCircularList();
testNormalInsertSortedCircularList();
return 0;
}