The three benefits of using implementation independent data structure(abstract data structure)-
- Efficient memory use: By the efficient use of data structure the uses of memory can be optimized. If the size of data is not sure then we can use linked list vs array data structure. If there is no more use of memory, then it can release.
- Re usability: It can be reused, once we implemented a particular data structure, we can use it any other place. The implementation of the data structure can be compiled into libraries which can be used by different clients.
- Abstraction: Data structures serves as the basis of abstract data types, the data structure defines the physical forms of ADT(Abstract Data Type).
Comments
Leave a comment