Advantage and disadvantage of array
Advantage and Disadvantage of Array
Hello Friends, Welcome to the my blogs .In the previous blogs we have seen the application of Linked list, Stack, Queue, and Tree . Hope you all enjoy that blogs , today we will see the Advantage and disadvantage of array . So let's start this:
Advantage of Array:
- Array can be implement easily.
- Different data of the same data types can be represent by only one name.
- Array can store many data items at a same time.
- 2D arrays is used for representation of matrices.
- wastage of memory in Array.
- Array is a Static data structure because of which the size of array is already defined.
- For Insertion and deletion we have to do traverse the full array.
In the next blog, we will see the difference between arrays and linked list.
Thank You