answersLogoWhite

0

Array

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is fifo data structure?

FIFO, means "First In, First Out". An example of such a data structure is a queue.


Can stack be called fifo data structure?

No. A stack is a LIFO (Last In First Out) data structure.A queue is a FIFO (First In First Out) data structure.


What is first in first out data structure?

QUEUE is the first in first out (FIFO) data structure. It is a linear data structure in which insertion of an element is done from rear end of a list and deletion of an element is done from front end of a list. For example- people in queue waiting for bus.


When you create a new data which object created first?

When you create new data, the first object created is typically the data structure that will hold it, such as an array, list, or database record. This structure provides a defined format and organization for the data being input. After that, the actual data elements are instantiated and stored within this structure.


What is stacks in data structure?

Stack is a data structure which is closed at one end. last in first outhi


What is pattern matching in data structures?

how to find complxity of first pattern matching in data structure


What are the subject-matters of data structure?

types of data structure types of data structure


What is the first concern of business forecasting?

(1) predictions are made using historical data.


How do you amend a data structure?

How do you amend a data structure?


What are they two types of data?

Empirical data and Historical data.


What is the difference between allocation and search data structure?

difference between serch data structure and allocation data structure


What is a stack in data structure?

A stack in Data structure is a LIFO structure. Last In First Out. Think of it as a stack of books or a stack of trays in a cafeteria line. when you are in a line in a cafeteria you take the tray that is on the top and the worker place new washed ones also on the top. So deletion and insertion all done at one end, it is called the top of the stack. In Computer Programming Stacks are so important and have too many applications such as the evaluation of Mathematical expressions. Also note that a stack is unlike a queue structure. Queue data structure is FIFO. First In First Out as in a bank teller line.