-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4월19일.cpp
65 lines (55 loc) · 1.38 KB
/
4월19일.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
#include <stdio.h>
#include <stdlib.h>
typedef int element;
//노드 구조 정의
typedef struct ListNode{
element data;
struct ListNode* link; // ListNode로 하면안된다 // 자기참조구조체
}ListNode;
ListNode * insert_first(ListNode* head, element value) {
ListNode* p = (ListNode*)malloc(sizeof(ListNode)); //동적할당
p->data = value;
p->link = head;
head = p;
return head;
}
ListNode * delete_first(ListNode *head) {
ListNode* removed = head;
head = head->link; // head = removed->link;
free(removed);
return head;
}
void print_list(ListNode *head) {
for (ListNode* p = head; p != NULL; p = p->link) {//헤드에서 출발해서 p->link가 NULL이 아닐때까지 p를 p->link로 변환한다.
printf("%d->", p->data);
}
printf("\n");
}
ListNode * search_list(ListNode *head, element x) {
ListNode * p = head;
while (p != NULL) {
if (p->data == x) {
return p;
}
p = p->link; // p의 데이터 값이 x가 아니라면 그 다음 link가 가리키는 값이랑 비교해야하므로 값을 변환해줘야한다.
}
return NULL;
}
int main() {
ListNode* head = NULL;
head = insert_first(head, 10);
head = insert_first(head, 20);
head = insert_first(head, 30);
head = insert_first(head, 40);
head = insert_first(head, 50);
ListNode* s = search_list(head, 20);
if (s != NULL) {
printf("데이터가 존재함\n");
}
else {
printf("데이터가 존재하지 않음\n");
}
print_list(head);
head = delete_first(head);
print_list(head);
}