IB Computer Science HL Topic 5 (Abstract Data Structures)

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/23

flashcard set

Earn XP

Description and Tags

imported from computersciencecafe.com

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

24 Terms

1
New cards
​​2D arrays
A data structure that stores elements in a grid-like format with rows and columns.
2
New cards
Stacks
A data structure that follows the Last-In-First-Out (LIFO) principle, where elements are added and removed from the same end.
3
New cards
Queues
A data structure that follows the First-In-First-Out (FIFO) principle, where elements are added to one end and removed from the other end.
4
New cards
Heaps
A tree-based data structure that is used to implement priority queues, where the highest priority element is always at the root.
5
New cards
Linked lists
A data structure that stores elements in nodes, where each node contains a value and a pointer to the next node.
6
New cards
Double linked lists
A linked list where each node has a pointer to both the next and the previous node.
7
New cards
Circular linked lists
A linked list where the last node points to the first node, creating a circular structure.
8
New cards
Pointers
A variable that stores the memory address of another variable.
9
New cards
Binary trees
A tree-based data structure where each node has at most two children.
10
New cards
Non-binary trees
A tree-based data structure where each node can have more than two children.
11
New cards
Nodes
An individual element of a data structure, such as a linked list or a tree.
12
New cards
Parent node
A node that has one or more children.
13
New cards
Left-child node
The child node of a parent that appears to the left.
14
New cards
Right-child node
The child node of a parent that appears to the right.
15
New cards
Subtree node
A smaller tree that is part of a larger tree.
16
New cards
Root node
The topmost node in a tree.
17
New cards
Leaf node
A node that has no children.
18
New cards
Tree traversal
The process of visiting all nodes in a tree data structure.
19
New cards
Pre-order traversal
A type of tree traversal where the root node is visited first, followed by the left subtree and then the right subtree.
20
New cards
Post-order traversal
A type of tree traversal where the left subtree is visited first, followed by the right subtree, and then the root node.
21
New cards
In-order traversal
A type of tree traversal where the left subtree is visited first, followed by the root node, and then the right subtree.
22
New cards
Recursion
A programming technique where a function calls itself.
23
New cards
Base case
The terminating condition for a recursive function.
24
New cards
Recursive case
The condition where a recursive function continues to call itself.