Page cover image

RCS.101.c

RCS.101.c

Backtracking


Basic Graphs

Trees

Trees are a common non-linear data structure. They don’t store data in a linear way, but instead organize hierarchically. A tree is normally represented by nodes which contain a value and point to other nodes.

Learning Material


Heap

A heap is a tree-based data structure that usually comes in two varieties: (1) Max-heaps where the the value in any node is greater than all the values in it's child nodes and (2) Min-heaps where the value in any node is less than all of the values in it's child nodes.

Learning Material

Last updated