answersLogoWhite

0

queue is an abstract data type that which entities in a collection are kept in order, this makes the sense of fifo(first in first out).

stack is a container of the object which works on the principle of lifo(last in first out)

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What is the data structure which stores the multipole values?

No such thing exist in C but you can do this using structure data type and creating arrary of it object there after!!


MDU -1st semester subject codes?

data structure using c


What is the price of the book data structure using c and c plus plus by tanenbaum?

225 Rs. after discount........


What do you mean by non primitive data structure in C programming?

What do you mean by searching in data structure in C.?


Data structure algorithms using C?

array,linklist,queue,stack,tree,graph etc...


How do you implement queue using stack in c plus plus?

A queue in any language is a singly-linked list structure that permits new data to be inserted only at the end of a list while existing data can only be extracted from the beginning of the list. Queues are also known as a first in, first out (FIFO) structure. Unlike a standard singly-linked list, the list maintains a pointer to the last node as well as the first, in order to insert new data and extract existing data in constant time. Variations on the queue include the priority queue which permit data to be weighted, such that data with the greatest priority is promoted to the front of the queue, behind any existing data with the same or higher priority, using an insertion sort technique. Insertion is therefore achieved in linear time rather than constant time, however extraction is always in constant time.


C plus plus program using a stacks converting a postfix-infix?

Yes


Mini project on employee database using linked list on c language code?

mini project data structure


What is the structure and organization of data in a database called?

Data hierarchy is the structure and organization of data, which involves fields, records, and files. (c) Bidgoly MIS2.


What do you menat by a structre in c?

'structure' is also known as 'data-record' or 'compund data'


How do you create modules in c language?

by using structure in c.........


What is an ordered list of data structure using c plus plus?

An ordered list of data in any programming language is simply a sorted array or list. In C++ this can either mean a sorted array, vector, list or forward list.