연결 리스트 응용
- 정리의 기반은 학교 강의 노트와 [c언어로 쉽게 풀어쓴 자료구조]를 참고하였습니다.
저의 정리가 옳지 않다면 피드백 부탁드립니다.
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
typedef int element;
typedef struct node{
element data;
struct node *link;
} node;
//head에 삽입
node* insert_head(node *head, int value)
{
node *p = (node*)malloc(sizeof(node));
p->data = value;
p->link = head;
head = p;
return head;
}
//삽입
node* insert(node **list, int num)
{
node *p = (node*)malloc(sizeof(node));
p->data = num;
p->link = NULL;
node* pos = *list;
if (*list == NULL) {
*list = p;
}
else if (p->data >= (*list)->data)
{
p->link = *list;
*list = p;
}
else {
while (1)
{
if (pos->link == NULL) {
pos->link = p;
break;
}
else if (p->data > pos->link->data) {
p->link = pos->link;
pos->link = p;
break;
}
pos = pos->link;
}
}
}
//head노드 삭제
node* delete_head(node* head)
{
node *removed;
if (head == NULL)
return NULL;
removed = head;
head = removed->link;
free(removed);
return head;
}
//삭제
node* delete(node *head, int key) {
node* list = head;
if (head->data == key) {
head = head->link;
return;
} else {
while (list->link != NULL)
{ if (list->link->data == key) {
list->link = list->link->link;
return;
}
list = list->link;
}
}
}
//검색
node* search(node* head, element num)
{
node* p = head;
while (p != NULL) {
if (p->data == num) {
return p;
}
p = p->link;
}
return NULL
}
//연결 리스트 뒤집기
node* reverse(node* head)
{
node* p, * q, * r;
p = head;
q = NULL;
while (p != NULL)
{
r = q;
q = p;
p = p->link;
q->link = r;
}
return q;
}
//출력
void print_list(node* head)
{
node* p = head;
while (p != NULL) {
printf("%d ", p->data);
p = p->link;
}
printf("\n");
}
int main(void)
{
node* head = NULL;
node* rhead = NULL;
while (1)
{
int answer;
int input = NULL;
int* tmp = NULL;
printf("1: 추가, 2: 삭제, 3: 출력, 4: 역순 출력, 5: 종료\n");
scanf_s("%d", &answer);
switch (answer) {
case 1:
//추가
printf("입력 : ");
scanf_s("%d", &input);
if (head == NULL) {
insert(&head, input);
printf("성공.\n");
}
else {
if (search(head, input) == NULL) {
insert(&head, input);
printf("성공.\n");
}
else {
printf("실패. \n");
}
}
break;
case 2:
//삭제
printf("삭제 : ");
scanf_s("%d", &input);
if (head == NULL)
printf("리스트 비어있음.\n");
else if (head->data == input) //첫번째 노드일 경우
head = head->link;
else
delete(head, input); //그 외
break;
case 3:
printf("출력 : ");
if (head == NULL)
printf("리스트 비어있음. \n");
print_list(head);
printf("끝\n");
break;
case 4:
printf("역순 출력 : ");
if (head == NULL)
printf("리스트 비어있음.\n");
rhead = reverse(head); //리스트 뒤집기
print_list(rhead); //출력
head = reverse(rhead); //다시 뒤집어서 원상 복구
printf("끝\n");
break;
case 5:
exit(1);
default :
continue;
}
}
return 0;
}