-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdoubly_circular_linked.c
71 lines (60 loc) · 1.19 KB
/
doubly_circular_linked.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
#include <stdio.h>
#include <stdlib.h>
// 定义节点结构体
struct Node
{
int data;
struct Node *next;
struct Node *prev;
};
// 打印链表
void printList(struct Node *head)
{
if (head == NULL)
return;
struct Node *temp = head;
do
{
printf("%d <-> ", temp->data);
temp = temp->next;
} while (temp != head);
printf("(back to head)\n");
}
// 插入节点到尾部
void appendNode(struct Node **head, int data)
{
struct Node *newNode = (struct Node *)malloc(sizeof(struct Node));
struct Node *last = *head;
newNode->data = data;
newNode->next = *head;
newNode->prev = NULL;
if (*head == NULL)
{
*head = newNode;
newNode->next = newNode;
newNode->prev = newNode;
return;
}
while (last->next != *head)
{
last = last->next;
}
last->next = newNode;
newNode->prev = last;
(*head)->prev = newNode;
}
int main()
{
struct Node *head = NULL;
// 插入节点
appendNode(&head, 1);
appendNode(&head, 2);
appendNode(&head, 3);
printList(head); // 输出:1 <-> 2 <-> 3 <-> (back to head)
return 0;
}
/*
jarry@MacBook-Pro linked % gcc doubly_circular_linked.c
jarry@MacBook-Pro linked % ./a.out
1 <-> 2 <-> 3 <-> (back to head)
*/