Data Structures 101: Introduction To Trees
Hello everyone! ππ» Hope you all are good β¨
Today, we are going to learn another useful data structure i.e Trees π
Trees
A tree is a data structure where a node can have zero or more children nodes. Each node
contains a value, and similar to graphs...
rehansattar.hashnode.dev6 min read
Jb Rocher
Lead Software Engineer in an Eco-Friendly Start Up
Nice work ! I think it'd be great to see these structures applied to concrete use cases. Like showing an algorithm that uses Binary Search Tree to perform a search, and why it's more efficient than naive implementation.