单选题 The () is a pointer that identifies the next element in the linked list.
A: link
B: node
C: array
D: a or b
A: link
B: node
C: array
D: a or b
举一反三
- 7. The pointer in the static linked list represents (). A: the address of the next element B: memory address C: array subscript D: address of the left child and the right child
- In a doubly linked list, each node has links to the previous and next nodes in the list. A: 正确 B: 错误
- What<br/>is the condition that a single linked list with a header node is not<br/>empty ?Suppose the head pointer of the linked list is first. () A: first<br/>== NULL B: first->link<br/>== NULL C: first->link<br/>== first D: first->link<br/>== link
- 6. The most common operation for setting a linked list is to insert a node at the end and delete the tail node, so () is the most time-saving option. A: doubly linked circular list with a head node B: singly linked list C: singly linked circular list with a tail pointer D: singly linked circular list
- 单选题 In a linked list, each element contains (). A: data B: a link C: a record D: a and b