Non Linear Data Structure
A non linear data structure where data element or items arranged hierarchy way or non linear way. Here nodes or data elements we cannot always traverse through sequentially. This type of data structure is complex. Non linear data structure doesn't use pointer.
Example - Tree, Graph.
Advantages
1. Memory utilization is efficient.
Disadvantages
1. Difficult to implement.
Post a Comment