Computer Science, asked by sarkarsid, 8 months ago

Choose the correct data structure whose size is fixed and insertion and deletions are bit difficult
because we have to shift the elements upward or downward to avoid the wastage of memory.

Graph

Array
Linked List
Tree​

Answers

Answered by sathwikVH
10

Answer:

array

Explanation:

i guess this will help

Answered by anjalin
0

Size of our Array is predefined and insertion/deletion operations are a bit difficult.

Explanation:

  • The Array can be described as a group of homogenous data types stored with Contiguous memory allocation.
  • The size of an array is allocated when the array is created. After Creation, its size is Fixed.
  • Arrays store elements in Contiguous memory allocations.
  • So for delete and insert operation in Array we need to move the other elements of an array according to the allocated space.

Therefore, The overall size of the array is predefined at the time of compilation and the Insertion/Deletion operation is a bit difficult.

Similar questions