RCS.101.c
Last updated
Last updated
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
Practices
Graduation Challenge
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.
Practices
Graduation Challenge