Question: Design a C++ function bool delAll(Node *&head, int value). The function receives head and value as input parameter and deletes all occurrences of value in
Design a C++ function bool delAll(Node *&head, int value). The function receives head and value as input parameter and deletes all occurrences of value in linked list. For example, if linked list contains items 2,4,6,2,7,2,12,5. After calling delAll(Node head, 2), the resultant linked list will be 4,6,7,12,5.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
