forked from coder2hacker/Explore-open-source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CIRCLAR.CPP
120 lines (114 loc) · 2.1 KB
/
CIRCLAR.CPP
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
/* Circular queue using array */
/* Data Structures Using C by UDIT AGARWAL */
#include <stdio.h>
#include <conio.h>
#include <alloc.h>
#include <stdlib.h>
#define MAX 5
int cqueue[MAX];
int front = -1;
int rear = -1;
void main ( )
{
clrscr();
void insert(),del(),display();
int choice;
while (1)
{
printf ("1.Insert\n");
printf ("2.Delete\n");
printf ("3.Display\n");
printf ("4.Quit\n");
printf ("Enter your choice :");
scanf ("%d", &choice);
switch(choice)
{
case 1 :
insert( );
break;
case 2 :
del( );
break;
case 3 :
display( );
break;
case 4 :
exit(1);
default:
printf("Wrong choice\n");
}
}
}
void insert( )
{
int item;
if((front==0 && rear==MAX-1) || (front==rear+1))
{
printf("Queue is Overflow\n");
return;
}
if (front==-1)/*If queue is empty*/
{
front = 0;
rear = 0;
}
else
if (rear==MAX-1) /*rear is at last position of queue*/
rear = 0;
else
rear = rear + 1;
printf("Input the element for insertion :");
scanf("%d", &item);
cqueue[rear] = item;
}
void del( )
{
if (front == -1)
{
printf("Queue Underflow\n");
return;
}
printf ("Deleted element from queue is : %d\n", cqueue[front]);
if(front == rear)
/* queue has only one element */
{
front = -1;
rear = -1;
}
else
if(front==MAX-1)
front = 0;
else
front = front + 1;
}
void display( )
{
int front_pos = front, rear_pos = rear;
if(front == -1)
{
printf("Queue is empty\n");
return;
}
printf ("Queue elements are:\n");
if(front_pos <= rear_pos)
while(front_pos <= rear_pos)
{
printf(" %d\n", cqueue[front_pos]);
front_pos++;
}
else
{
while(front_pos <= MAX-1)
{
printf(" %d\n", cqueue[front_pos]);
front_pos++;
}
front_pos = 0;
while(front_pos <= rear_pos)
{
printf(" %d\n", cqueue[front_pos]);
front_pos++;
}
}
printf("\n");
}