posted Feb 9, 2011, 9:17 AM by Neil Mathew
[
updated May 5, 2011, 6:25 PM
]
SOURCE CODE:
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
| #include<stdio.h>
struct node
{
int info;
struct node * next;
}*start, *rear, *temp;
void INS(int item)
{
struct node *newnode;
newnode = (struct node *) malloc ( sizeof(struct node) );
if(newnode==NULL)
printf(" NO SPACE LEFT ");
else
{
newnode->info=item;
newnode->next=NULL;
if( start == NULL )
{
start=newnode;
rear=newnode;
}
else // INS at END
{
rear->next = newnode;
rear=rear->next;
}
} //end of outer if
}// end of func
void DEL()
{
if(start==NULL)
printf("\n No item to delete. Queue is empty. \n");
else
{
printf("\n Node with Info = %d is Deleted. \n", start->info );
temp=start;
start=start->next;
free(temp);
}
}
void DISPLAY()
{
if(start==NULL)
printf("\n Queue is empty. No Nodes. ");
else
{
temp=start;
printf("\n |");
while(temp!=NULL)
{
printf(" - |%d|", temp->info);
temp=temp->next;
}
printf(" - | \n");
}//end of else
}
int main()
{
int item,ch=1;
start=rear=NULL;
while(ch!=4)
{
printf("\n MENU: \n");
printf(" 1. Insert a node. ");
printf("\n 2. Delete a node. ");
printf("\n 3. Display Queue. ");
printf("\n 4. EXIT \n Your Choice: ");
scanf("%d",&ch);
switch(ch)
{
case 1: //INSERT
printf("\n ENTER ITEM: ");
scanf("%d", &item);
INS(item);
break;
case 2: //DELETE
DEL();
break;
case 3: //DISPLAY
DISPLAY();
break;
case 4:
printf("\n Exiting.. ");
break;
default: printf(" INVALID CHOICE. ");
}
}; //end of while loop
return 0;
}
|
OUTPUT:
MENU:
1. Insert a node.
2. Delete a node.
3. Display Queue.
4. EXIT
Your Choice: 1
ENTER ITEM: 64
MENU:
1. Insert a node.
2. Delete a node.
3. Display Queue.
4. EXIT
Your Choice: 1
ENTER ITEM: 89
MENU:
1. Insert a node.
2. Delete a node.
3. Display Queue.
4. EXIT
Your Choice: 1
ENTER ITEM: 90
MENU:
1. Insert a node.
2. Delete a node.
3. Display Queue.
4. EXIT
Your Choice: 3
| - |64| - |89| - |90| - |
MENU:
1. Insert a node.
2. Delete a node.
3. Display Queue.
4. EXIT
Your Choice: 2
Node with Info = 64 is Deleted.
MENU:
1. Insert a node.
2. Delete a node.
3. Display Queue.
4. EXIT
Your Choice: 3
| - |89| - |90| - |
MENU:
1. Insert a node.
2. Delete a node.
3. Display Queue.
4. EXIT
Your Choice: 4
Exiting..
|
|