-
Notifications
You must be signed in to change notification settings - Fork 0
/
Baekjoon-2605.cpp
141 lines (114 loc) · 2.08 KB
/
Baekjoon-2605.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
130
131
132
133
134
135
136
137
138
139
140
141
#include<iostream>
using namespace std;
struct Node
{
int data;
Node* prev;
Node* next;
};
class DoublyLinkedList
{
private:
int count;
Node* header;
public:
Node* trailer;
DoublyLinkedList()
{
count=0;
header=new Node{0, NULL, NULL};
trailer=new Node{0, NULL, NULL};
header->next=trailer;
trailer->prev=header;
}
~DoublyLinkedList()
{
while(!empty())
{
pop_front();
}
delete header;
delete trailer;
}
void insert(Node *p, int val)
{
Node* new_node=new Node{val, p->prev, p};
new_node->prev->next=new_node;
new_node->next->prev=new_node;
count++;
}
void push_front(int val)
{
insert(header->next, val);
}
void push_back(int val)
{
insert(trailer, val);
}
void erase(Node *p)
{
p->prev->next=p->next;
p->next->prev=p->prev;
delete p;
count --;
}
void pop_front()
{
if(!empty())
erase(header->next);
}
void pop_back()
{
if(!empty())
erase(trailer->prev);
}
bool empty() const
{
return count == 0;
}
void print_all()
{
Node* curr = header->next;
while(curr!=trailer)
{
std::cout<<curr->data<<" ";
curr=curr->next;
}
std::cout<<std::endl;
}
void print_reverse();
};
int main()
{
int number;
cin>>number;
DoublyLinkedList ll;
int count;
for(int i=1;i<=number;i++)
{
cin>>count;
if(i==1)
{
ll.push_front(i);
}
else if(count==0)
{
ll.push_back(i);
}
else if(count==i-1)
{
ll.push_front(i);
}
else
{
Node* node=ll.trailer->prev;
while(count!=1)
{
node=node->prev;
count--;
}
ll.insert(node, i);
}
}
ll.print_all();
}