
Linear Data Structure 469
Non-linear: This type is opposite to linear. The data values in this structure are not arranged in
order. Tree, graph, table and sets are examples of non-linear data structure.
Homogenous: In this type of data structure, values of same data types are stored. An example of it
can be an array that stores similar data type elements having different locations for each element of
them.
Non-homogenous: In this type of data structure, data values of different types are grouped like in
structure and classes.
Dynamic: In dynamic data structure, like references and pointers, size and memory locations can be
changed during progra ...