.) Difference between representation of stack using
arrays and linked lists.
Answers
Answered by
1
Answer:
An array is a collection of elements of a similar data type. Linked List is an ordered collection of elements of the same type in which each element is connected to the next using pointers. Array elements can be accessed randomly using the array index. Random accessing is not possible in linked lists.
Similar questions