-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDoubly.c
131 lines (130 loc) · 2.7 KB
/
Doubly.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
#include <stdio.h>
#include <stdlib.h>
struct node
{
struct node *prev;
struct node *next;
int data;
};
struct node *head = NULL,*StackHead=NULL;
void insertNode();
void display();
void reverseList();
void search();
void main()
{
int choice = 0;
while (choice != 3)
{
printf("\nChoose one option from the following list ...\n");
printf("\n1.Insert a Node\n2.Show List\n3.Exit\n");
printf("\nEnter your choice?\n");
scanf("\n%d", &choice);
switch (choice)
{
case 1:insertNode();
break;
case 2:
display();
break;
case 3:
exit(0);
break;
case 4:reverseList();
break;
case 5:displayStack();
break;
default:
printf("Please enter valid choice..");
}
}
}
void insertNode()
{
struct node *myList, *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()
{
struct node *myList;
printf("\n printing values...\n");
myList = head;
while (myList != NULL)
{
printf("%d\n", myList->data);
myList = myList->next;
}
}
void reverseList()
{
struct node *myList;
myList = head;
while (myList != NULL)
{
push(myList->data);
myList = myList->next;
}
}
void push (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 displayStack()
{
struct node *myList;
printf("\n printing values...\n");
myList = StackHead;
while (myList != NULL)
{
printf("%d\n", myList->data);
myList = myList->next;
}
}