The elements of a linked list are stored
a. In a structure
b. In contiguous memory locations
c. Anywhere the computer has space for them
d. In an array
Answers
Answered by
3
Answer:
in a structure. I think soooooooo
Answered by
0
Answer:
a. in a structure.
Explanation:
Linked list is a data structure in which elements are not stored in a contiguous memory locations. Each element is called as a node and contains two fields i.e. a data field and an address filed which contains the address of the next node. Linked lists are of 3 types:- Singly linked list, doubly linked list and circular linked list.
The elements of a linked list cannot be store in an array as an array itself is a linear data structure in which elements are stored in a contiguous memory locations.
#SPJ2
Similar questions