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.