#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
sir i am making this project. so please send me all the details of this. thanku ...
sorry line no. 71...
in Line no. 73 there should be (ch == ')')...
u have wrote a wrong program .u have to big mistake in the program .u have writt...
If u want embedded project pls contact me. (with report&program). Unaiskavo...