Exam 5: Linked Lists
Exam 1: Software Engineering Principles and C++ Classes42 Questions
Exam 2: Object-Oriented Design OOD and C++35 Questions
Exam 3: Pointers and Array-Based Lists45 Questions
Exam 4: Standard Template Library (STL) I47 Questions
Exam 5: Linked Lists44 Questions
Exam 6: Recursion36 Questions
Exam 7: Stacks44 Questions
Exam 8: Queues48 Questions
Exam 9: Searching and Hashing Algorithms49 Questions
Exam 10: Sorting Algorithms47 Questions
Exam 11: Binary Trees and B-Trees47 Questions
Exam 12: Graphs43 Questions
Exam 13: Standard Template Library (STL) II50 Questions
Select questions type
In an ordered list, the header node at the beginning of the list typically contains a value smaller than the smallest value in the data set.
(True/False)
4.9/5
(44)
Building a linked list backwards places the new item to be added at the end of the linked list.
(True/False)
4.8/5
(39)
In general, there are three types of linked lists-sorted, unsorted and mixed.
(True/False)
4.8/5
(37)
In a doubly linked list, every node contains the address of the next node except for the ____ node.
(Multiple Choice)
4.7/5
(39)
To delete a given item from an ordered linked list, there is no need to search the list to see whether the item to be deleted is in the list.
(True/False)
4.9/5
(40)
The algorithms to implement the operations search, insert, and remove are the same for sorted and unsorted lists.
(True/False)
4.9/5
(41)
The order of the nodes in a linked list is determined by the data value stored in each node.
(True/False)
4.8/5
(34)
In the STL container list, the function push_front adds an element at the beginning of the list.
(True/False)
4.9/5
(42)
Searching through a linked list or inserting an item in a linked list requires a ____ of the list.
(Multiple Choice)
4.9/5
(39)
____ lists have elements that are arranged according to some criteria.
(Multiple Choice)
4.9/5
(37)
The address of the first node in a linked list is stored in a separate location, called the head.
(True/False)
4.9/5
(36)
A linked list is a random access data structure such as an array.
(True/False)
4.8/5
(32)
In a linked list, we always want head to point to the ____ node.
(Multiple Choice)
4.9/5
(44)
Showing 21 - 40 of 44
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)