First time here? Checkout the FAQ!
x
menu search
brightness_auto
more_vert

what is non Linear Data Structure ? Explain with Example

thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike

1 Answer

more_vert
 
verified
Best answer

If the elements of a data structure are not stored in a sequential order, then it is a non-linear data structure. The relationship of adjacency is not maintained between elements of a non-linear data structure.
Traversing of data elements in one go is not possible. Ease of implementation is Complex , it involves Multiple level and Memory Utilization is Effective

Examples include trees and graphs.

thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike
...