Single linked list consist of one Pointer
Select one:
True
False
Answers
Answered by
0
Explanation:
The singly-linked list contains nodes that only point to the next node. The C++ doubly linked list has nodes that can point towards both the next and the previous node. A node has two parts: the data part and the next part. The data part contains the stored data, and the next part provides the address of the next node.
Similar questions