151k views
1 vote
What is included in a linked list node?

I a reference to the next node
II an array reference
III a data element

User Lila
by
5.1k points

1 Answer

3 votes

Step-by-step explanation:

In its most basic form, each node contains:

data, and a reference (in other words, a

link) to the next node in the sequence. A

linked list whose nodes contain two fields:

an integer value and a link to the next node.

The last node is linked to a terminator used

to signify the end of the list.

User Sarfaraz
by
6.1k points