Queue most important topic
Types of queue :- " Four types of queue. Simple queue Circular queue Priority queue Double ended queue // main important topic for circular queue insertion and deletion operation.. Insertion an element algorithm circular queue.. Step1, start Step2, if (front==(rear+1) max, then "overflow" Step3, else { rear=(rear+1)max queue[rear]=element ; If ( front== - 1) ...