PDA

View Full Version : help regarding queue



aj2903
3rd April 2009, 08:42
hii
i'm using QQueue in the application. i'm able to insert & retrive data from the QQueue ,but it is acting as FIFO. Can it be changed to FILO,LIFO etc..

wysota
3rd April 2009, 08:48
LIFO queue is a stack, hence you should use QStack. FILO is the same as LIFO, I guess.