-
Notifications
You must be signed in to change notification settings - Fork 0
/
node_list.c
90 lines (74 loc) · 1.86 KB
/
node_list.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
#include <stdio.h>
#include <stdlib.h>
typedef struct node {
int num;
struct node *next;
} Node;
// リストを初期化
Node* init()
{
// ダミーノードを用意
Node *dummy = malloc(sizeof(Node));
dummy->next = NULL;
return dummy;
}
// p の後ろにノードを追加
void insert_after(Node *p, int num)
{
Node *new_node = malloc(sizeof(Node));
new_node->num = num;
if (p == NULL) {
printf("エラー:追加する位置にノードが存在しません\n");
return;
}
new_node->next = p->next;
p->next = new_node;
}
// p の後ろのノードを削除
void delete_after(Node *p)
{
if (p == NULL || p->next == NULL) {
printf("エラー:削除するノードが存在しません\n");
return;
}
Node *tmp = p->next->next;
free(p->next);
p->next = tmp;
}
// top の後ろのノードを出力
void print_list(Node *top)
{
if (top == NULL) {
printf("エラー:リストが初期化されていません\n");
return;
}
Node *p = top->next; // ダミーノードの次のノードから出力する
while (p != NULL) {
printf("%d\n", p->num);
p = p->next;
}
printf("\n");
}
int main(void)
{
// リストを初期化
Node *top = init();
// 5 => 9 => 3 => 7 の順番でノードを追加
Node *p = top;
insert_after(p, 5);
p = p->next;
insert_after(p, 9);
p = p->next;
insert_after(p, 3);
p = p->next;
insert_after(p, 7);
print_list(top);
// ノードを追加する
p = top->next;
insert_after(p, 2); // p の後ろの 2 の値を持つノードを追加する
print_list(top);
// ノードを削除する
p = top->next->next->next;
delete_after(p); // p の後ろにノードがあれば、そのノードを削除する
print_list(top);
}