#include <iostream.h> #include <conio.h> class queue { private : int *arr ; int front, rear ; int MAX ; public : queue( int maxsize = 10 ) ; void addq ( int item ) ; int delq( ) ; } ; queue :: queue( int maxsize ) { MAX = maxsize ; arr = new int [ MAX ]; front = -1 ; rear = -1 ; } void queue :: addq ( int item ) { if ( rear == MAX - 1 ) { cout << "\nQueue is full" ; return ; } rear++ ; arr[rear] = item ; if ( front == -1 ) front = 0 ; } int queue :: delq( ) { int data ; if ( front == -1 ) { cout << "\nQueue is Empty" ; return NULL ; } data = arr[front] ; arr[front] = 0 ; if ( front == rear ) front = rear = -1 ; else front++ ; return data ; } void main( ) { queue a (10 ) ; clrscr(); a.addq ( 23 ) ; a.addq ( 9 ) ; a.addq ( 11 ) ; a.addq ( -10 ) ; a.addq ( 25 ) ; a.addq ( 16 ) ; a.addq ( 17 ) ; a.addq ( 22 ) ; a.addq ( 19 ) ; a.addq ( 30 ) ; a.addq ( 32 ) ; int i = a.delq( ) ; cout << "\nItem deleted: " << i ; i = a.delq( ) ; cout << "\nItem deleted: " << i ; i = a.delq( ) ; cout << "\nItem deleted: " << i ; } |
ADB commands for Android
Android
What are C Tokens?
C/C++
Least Recently Used Paging Algorithm
Advanced programs
First In First Out Page Replacement Algorithm
Simple programs
Java Program to find the IP address of the Machine
Basic Programs
Palindrome checking using function overloading
Advanced programs
hello arishma. did u made any project on this? could u please help mee 4 this....
i dont know what is going here but this program is not correct for round robin ...
i dont know what going here but this program is not correct for round robin sche...
can any explain there example mechanism?...
could u plz send me the whole projects with program my id is amalmurali803@gmail...