Insert Element in Queue in C++

Advertisements

Prev Tutorial Next Tutorial

Insert Element in Queue Program in C++

Operation on a queue

The basic operation that can be perform on queue are;

  • Insert an Element in a Queue.
  • Delete an Element from the Queue.

Insert an element in a queue.

insert date in queue in c++

In queue insert any element form Rear. If you insert new element in queue value of Rear will be increased by 1.

Insert Element in Queue in C++

	
void insert()
{
int item;
cout<<"Element : ";
cin>>item;
if(front==(rear+1)%3)
{
cout<<"Queue is Full";
return;
}
if(front==-1)
{
rear=front=0;
}
else
{
rear=(rear+1)%3;
}
cque.cqueue[rear]=item;
cout<<"Successfully Insert";
}

Prev Tutorial Next Tutorial

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements