MCQOPTIONS
Saved Bookmarks
| 1. |
Consider the following recursive implementation of linear search on a linked list:Which of the following lines should be inserted to complete the below code? |
| A. | 1 |
| B. | 0 |
| C. | linear_search(temp, value) |
| D. | linear_search(temp->next, value) |
| Answer» E. | |