-
Notifications
You must be signed in to change notification settings - Fork 36
/
Concatenate_two_DLL.c
143 lines (107 loc) · 2.5 KB
/
Concatenate_two_DLL.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
#include <stdio.h>
#include <stdlib.h>
struct node {
int data;
struct node *prev;
struct node *next;
};
struct node *list = NULL;
struct node *list_last = NULL;
struct node *even = NULL;
struct node *even_last = NULL;
struct node *odd = NULL;
struct node *odd_last = NULL;
struct node *current = NULL;
//Create Linked List
void insert(int data) {
// Allocate memory for new node;
struct node *link = (struct node*) malloc(sizeof(struct node));
link->data = data;
link->prev = NULL;
link->next = NULL;
// If head is empty, create new list
if(data%2 == 0) {
if(even == NULL) {
even = link;
return;
}
else {
current = even;
while(current->next != NULL)
current = current->next;
// Insert link at the end of the list
current->next = link;
even_last = link;
link->prev = current;
}
}else {
if(odd == NULL) {
odd = link;
return;
}else {
current = odd;
while(current->next!=NULL)
current = current->next;
// Insert link at the end of the list
current->next = link;
odd_last = link;
link->prev = current;
}
}
}
//display the list
void print_backward(struct node *head) {
struct node *ptr = head;
printf("\n[last] <=>");
//start from the beginning
while(ptr != NULL) {
printf(" %d <=>",ptr->data);
ptr = ptr->prev;
}
printf(" [head]\n");
}
//display the list
void printList(struct node *head) {
struct node *ptr = head;
printf("\n[head] <=>");
//start from the beginning
while(ptr != NULL) {
printf(" %d <=>",ptr->data);
ptr = ptr->next;
}
printf(" [last]\n");
}
void combine() {
struct node *link;
list = even;
link = list;
while(link->next!= NULL) {
link = link->next;
}
link->next = odd;
odd->prev = link;
// assign list_last to last node of new list
while(link->next!= NULL) {
link = link->next;
}
list_last = link;
}
int main() {
int i;
for(i=1; i<=10; i++)
insert(i);
printf("Even : ");
printList(even);
printf("Even (R): ");
print_backward(even_last);
printf("Odd : ");
printList(odd);
printf("Odd (R) : ");
print_backward(odd_last);
combine();
printf("Combined List :\n");
printList(list);
printf("Combined List (R):\n");
print_backward(list_last);
return 0;
}