Want to become a Vibe Coder? Join Vibe Coding Training here
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Data Structure Queue
WhatsApp
Arun Prakash
Jan 05
2016
795
0
1
#include < stdio.h > int rear = 0;
int
front = 0;
int
max = 25;
int
queue[100];
main()
{
int
ch;
void
insert();
void
delete();
void
isempty();
void
isfull();
void
showqueue();
void
compact();
do
{
int
data;
printf(
"\t*******QUEUE ARRAY********"
);
printf(
"\t==========================\n"
);
printf(
"\t 1:insert\n"
);
printf(
"\t 2:delete\n"
);
printf(
"\t 3:isempty\n"
);
printf(
"\t 4:isfull\n"
);
printf(
"\t 5:show queue\n"
);
printf(
"\t 7:stop\n"
);
printf(
"\t===========================\n"
);
printf(
"enter your choice\n"
);
scanf(
"%d"
, & ch);
switch
(ch)
{
case
1:
// call insert function and BREAK after that
{
insert();
break
;
}
case
2:
// call delete function and BREAK after that
{
delete();
break
;
}
case
3:
// call isempty function and BREAK after that
{
isempty();
break
;
}
case
4:
// call isfull function and BREAK after that
{
isfull();
break
;
}
case
5:
// call show function and BREAK after that
{
showqueue();
break
;
}
case
6:
{
printf(
"program ended\n"
);
break
;
}
default
:
{
printf(
"enter valid choice"
);
break
;
}
}
}
// end of do while
while
(ch != 6);
}
//-------------------------------------------------------------//
void
insert()
//function to insert
{
int
data;
if
(rear == max)
{
printf(
"queue is full\n"
);
}
else
{
rear = rear + 1;
printf(
"enter the data\n"
);
scanf(
"%d"
, & data);
queue[rear] = data;
printf(
"\t inserted data\n"
);
}
}
//-----------------------------------------------------------//
void
delete()
//function to delete
{
if
(rear == front)
{
printf(
"\nstack is empty"
);
}
else
{
front = front + 1;
printf(
"%d"
, queue[front]);
printf(
"\n delete data"
);
}
}
//----------------------------------------------------------//
void
isempty()
//function to isempty
{
if
(rear == front)
{
printf(
"queue is empty"
);
}
else
{
printf(
"queue is not empty"
);
}
}
//----------------------------------------------------------//
void
isfull()
//function to isfull
{
if
(rear == front)
{
printf(
"queue is full"
);
}
else
{
printf(
"queue is not full"
);
}
}
//-----------------------------------------------------------//
void
showqueue()
//function to top of stack
{
int
i;
for
(i = front + 1; i < rear; ++i)
{
printf(
"data top of stack=%d\n"
, queue[i]);
}
}
data structure
C
C++
Up Next
Data Structure Queue