answersLogoWhite

0

What was the first historical data structure?

Updated: 12/23/2022
User Avatar

Jashadow

Lvl 1
12y ago

Best Answer

Array

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What was the first historical data structure?
Write your answer...
Submit
Still have questions?
magnify glass
imp
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.


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


How do you amend a data structure?

How do you amend a data structure?


What is the first concern of business forecasting?

(1) predictions are made using historical data.


What is homogeneous data structure?

collection of dissimilar type of data is called non homogeneous data structure as for example structure .


What is the difference between allocation and search data structure?

difference between serch data structure and allocation data structure


What is the weakness of Data structure diagram?

weakness of data structure diagrams


What is a stack in data structure?

A stack is a linear data structure that follows the Last In, First Out (LIFO) principle, where elements are added and removed from the same end called the top. Elements can only be added or removed from the top of the stack, making it a simple and efficient data structure for storing and accessing data.