-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDoubly2.c
180 lines (177 loc) · 3.78 KB
/
Doubly2.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
#include <stdio.h>
#include <stdlib.h>
void insertNode();
void display();
void reverseList();
void pushIntoStack(int);
void checkDuplicate();
struct node
{
struct node *prev;
struct node *next;
int data;
};
struct node *head = NULL, *StackHead = NULL, *myList;
int main()
{
int choice = 0;
while (choice != 5)
{
printf("\nChoose one option from the following list ...\n");
printf("\n1.Insert a Node\n2.Show List\n3.Reverse List \n4.Check Duplicates \n5.Exit\n");
printf("\nEnter your choice?\n");
scanf("\n%d", &choice);
switch (choice)
{
case 1:
insertNode();
break;
case 2:
display();
break;
case 3:
reverseList();
break;
case 4:
checkDuplicate();
break;
case 5:
exit(0);
break;
default:
printf("Please enter valid choice..");
}
}
}
void insertNode()
{
struct node *temp;
int item;
myList = (struct node *)malloc(sizeof(struct node));
if (myList == NULL)
{
printf("\nOVERFLOW");
}
else
{
printf("\nEnter value : ");
scanf("%d", &item);
myList->data = item;
if (head == NULL)
{
myList->next = NULL;
myList->prev = NULL;
head = myList;
}
else
{
temp = head;
while (temp->next != NULL)
{
temp = temp->next;
}
temp->next = myList;
myList->prev = temp;
myList->next = NULL;
}
}
printf("\nnode inserted\n");
}
void display()
{
if (head==NULL)
{
printf("Empty List !\n");
}
else{
struct node *tempMyList;
printf("\nprinting values...\n");
tempMyList = head;
while (tempMyList != NULL)
{
printf("%d\n", tempMyList->data);
tempMyList = tempMyList->next;
}
free(tempMyList);
}
}
void reverseList()
{
struct node *tempMyList;
tempMyList = head;
while (tempMyList != NULL)
{
pushIntoStack(tempMyList->data);
tempMyList = tempMyList->next;
}
free(tempMyList);
struct node *stackList;
stackList = StackHead;
myList = head;
while (stackList != NULL)
{
myList->data = stackList->data;
stackList = stackList->next;
myList = myList->next;
}
free(stackList);
printf("List Reversed ! \n");
display();
}
void pushIntoStack(int data)
{
struct node *TempStack = (struct node *)malloc(sizeof(struct node));
if (TempStack == NULL)
{
printf("not enough memory \n");
}
else
{
if (StackHead == NULL)
{
TempStack->data = data;
TempStack->next = NULL;
StackHead = TempStack;
}
else
{
TempStack->data = data;
TempStack->next = StackHead;
StackHead = TempStack;
}
}
}
void checkDuplicate()
{
struct node *tempMyList, *tempMyList2;
tempMyList = head;
int temp = 0, count = 0,flag=0;
while (tempMyList != NULL)
{
tempMyList2 = head;
while (tempMyList2 != NULL)
{
if (tempMyList2->data == tempMyList->data)
{
count++;
}
tempMyList2 = tempMyList2->next;
}
free(tempMyList2);
tempMyList = tempMyList->next;
if (count > 1)
{
flag=1;
}
count = 0;
}
if (flag == 1)
{
printf("YES ! ,there is duplicate value in list !\n");
}
else
{
printf("NO ! ,there is NO duplicate value in list !\n");
}
free(tempMyList);
}