1/44
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
Data Structure
A particular way of organizing data in a computer so that it can be used efficiently, representing values in memory specified by pointers.
Pointer
A bit string representing a memory address that can be stored in memory and manipulated by a computer program.
Array
A fixed-length, ordered collection of values of the same type stored in contiguous memory locations, identified by at least one index or key.
List
An abstract data type representing a sequence of values where the same value may occur more than once; serves as a container structure.
Linked List
A data structure consisting of a chain of nodes, where each node contains data and a reference (link) to the next node in the sequence.