|
Related Questions |
View Answer |
|
Value of the first linked list index is _______
A) One B) Zero C) -1 D) None of the above
|
View Answer
|
|
_______ form of access is used to add and remove nodes from a queue
|
View Answer
|
|
New nodes are added to the _____ of the queue.
|
View Answer
|
|
What is the benefit of using a queue linked list?
|
View Answer
|
|
A _______ is a data structure that organizes data similar to a line in the supermarket, where the first one in line is the first one out.
|
View Answer
|
|
StackLinkedList class inherits the LinkedList class
|
View Answer
|
|
The pop() member function determines if the stack is empty by calling the _____ member function
|
View Answer
|
|
What happens when you push a new node onto a stack?
|
View Answer
|
|
A stack-linked list is a data structure that uses a ______ to create a stack
|
View Answer
|
|
Astack is a data structure that organizes data similar to how you organize dishes in a stack on your kitchen counter
|
View Answer
|
|
A doubly linked list is a linked list consisting of nodes that have both the previous and next elements
|
View Answer
|
|
How can a node be inserted in the middle of a linked list?
|
View Answer
|
|
Definitions of member functions for the LinkedList class are contained in
|
View Answer
|
|
Linked list C++ application is organized into three files.They are _____, ______ and _____
|
View Answer
|
|
Identify the error in the following example of the use of a displayNodesReverse() member function void displayNodesReverse(){ cout << "Nodes in reverse order:"; NODE* temp = back; while(temp != NULL) { cout << " " << temp->data; temp = temp->Next; }}
|
View Answer
|
|
The destructor is responsible for allocating all the memory that was allocated for the linked list.
|
View Answer
|
|
The destroyList() member function deletes the contents of the linked list and ________________
|
View Answer
|
|
The LinkedList constructor is a member function that is called when an instance of the LinkedList is removed
|
View Answer
|
|
The LinkedList class specification is defined in the source file
|
View Answer
|
|
What member function places a new node at the end of the linked list?
|
View Answer
|