Data Structures Flashcards
Data structure category where data arrangement follows a specific trend such that the element is directly linked to the previous and next elements.
Linear Data Structure
Defined as the particular way of how data is organized.
Data Structures
Data structure category capable of storing more than one data type.
Non-Primitive Data Structure
The Static and Dynamic categories belong to which specific Data Structure?
Linear Data Structure
What are the four types of linear data structures?
- Array
- Linked Lists
- Stack
- Queue
What data structure has data elements connected to each other so that elements are arranged in sequential manner and each element is connected to the element in the front of it and behind it?
Linear Data Structure
Which data structure can be traversed in a single run?
Linear Data Structures
What type of linear data structure is a collection of the same data types stored at contiguous memory locations?
Array
What linear data structure where the elements are linked using pointers?
Linked Lists
What is the linear data structure that stores data elements in a Last-In/First-Out (LIFO) or First-In/Last-Out (FILO) order?
Stack