| Share this post! | Vote this! |
|
A queue is an ordered collection of items from which items may be
deleted at one end (called the front of the queue) and into which items
may be inserted at the other end (called the rear of the queue). Data
structure which implements a first-in, first-out list; e.g. print queue,
which contains a list of jobs to be printed in order. In programming, a
queue is a data structure in which elements are removed in the same
order they were entered. This is often referred to as FIFO (first in,
first out). more...




0 comments:
Post a Comment