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.
Don't use Classes and templates.
Comments
Leave a comment