Tree Data Structures

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/12

flashcard set

Earn XP

Description and Tags

Flashcards on the vocabulary and concepts related to tree data structures.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

13 Terms

1
New cards

Tree

A non-linear/hierarchical data structure with a root, branches, and leaves.

2
New cards

Root

The topmost node of a tree.

3
New cards

Branch

A subtree that extends from a parent node.

4
New cards

Leaf

An element with no children in a tree.

5
New cards

Binary Tree

A type of tree where each node has at most two children.

6
New cards

Full Binary Tree

A binary tree in which every node has 0 or 2 children.

7
New cards

Complete Binary Tree

A binary tree where every level is completely filled, except possibly for the last level.

8
New cards

Balanced Binary Tree

A binary tree where the height of the left and right subtrees of any node differ by no more than 1.

9
New cards

Parent

An element directly above a node in the tree.

10
New cards

Child

An element directly under a node in the tree.

11
New cards

Height of a Tree

The number of edges on the longest path from the root to a leaf.

12
New cards

Node

An individual element of a tree data structure.

13
New cards

Edge

A connection between two nodes.