Jane has created a special type of linked list. That linked list contains no NULL values in its links. If so, what type of
linked list is Jane has created?
Select one:
O Circular Linked List
O Doubly Linked List
O Single Linked List
O None of these options
Answers
Answered by
4
Answer:
single linked list because the last node may have a null value on its 2nd part so circular and doubly will not the answer
Answered by
0
Option (D)
Jane has created a special type of linked list. That linked list contains no NULL values in its links None of these options its an Empty Linked list.
Linked List:
- A linked list is a data structure made up of a series of nodes, each with a value and a pointer to the next node in the chain.
- The last element of the list is null, yet the head pointer is pointing to the first node.
- When the list is empty, the head pointer points to null. Unlike arrays, inserting and removing elements in linked lists is straightforward since all we need to do is update the pointers to the previous and next entries.
Similar questions