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)
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.
array,linklist,queue,stack,tree,graph etc...
mini project data structure
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.
what is the disadvantage of sparse matrix?
No such thing exist in C but you can do this using structure data type and creating arrary of it object there after!!
data structure using c
225 Rs. after discount........
What do you mean by searching in data structure in C.?
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.
array,linklist,queue,stack,tree,graph etc...
Yes
mini project data structure
Data hierarchy is the structure and organization of data, which involves fields, records, and files. (c) Bidgoly MIS2.
'structure' is also known as 'data-record' or 'compund data'
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.
what is the disadvantage of sparse matrix?