In which data structure are elements connected using pointers to form a sequence?

  • Array
  • Linked List
  • Queue
  • Stack
A linked list is a data structure where elements are connected using pointers to form a sequence. Each element (node) contains data and a reference (pointer) to the next element in the sequence. Linked lists are dynamic and allow efficient insertions and deletions in the middle of the sequence.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *