Reading-notes

Trees

-whats are trees ? it’s a non-linear data structure compared to arrays, linked lists, stacks and queues which are linear data structures. A tree can be empty with no nodes. so it’s a collection of data (Nodes) starting from the root and each node has a list of reference nodes.

and this my small summary.