Exam 17: Linked Lists

arrow
  • Select Tags
search iconSearch Question
flashcardsStudy Flashcards
  • Select Tags

The steps involved in inserting a new item at the beginning of an unordered linked list are ____.

(Multiple Choice)
4.9/5
(42)

In C++, the dereferencing operator is ____________________.

(Short Answer)
4.9/5
(33)

A linked list is a collection of components, called ____.

(Multiple Choice)
4.8/5
(42)

A linked list must be searched ____________________, starting from the first node.

(Short Answer)
4.9/5
(21)

Every node in a doubly linked list has two pointers: ____ and ____.

(Multiple Choice)
4.8/5
(41)

In a linked list, the order of the nodes is determined by the address, called the ____, stored in each node.

(Multiple Choice)
4.8/5
(37)

A(n) ____________________ is an object that produces each element of a container, such as a linked list, one element at a time.

(Short Answer)
4.8/5
(26)

What is the purpose of the following code? current = head; While (current != NULL) { //Process current Current = current->link; }

(Multiple Choice)
5.0/5
(36)

Because each node of a linked list has two components, we need to declare each node as a(n) ____.

(Multiple Choice)
4.8/5
(30)

When you build a linked list in the backward manner, a new node is always inserted at the end of the linked list.

(True/False)
5.0/5
(35)
Showing 41 - 50 of 50
close modal

Filters

  • Essay(0)
  • Multiple Choice(0)
  • Short Answer(0)
  • True False(0)
  • Matching(0)