Question: please help me with these functions for C++ linked lists these functions have PARAMETER: An int or more storing values. Insert a new node, storing
please help me with these functions for C++ linked lists
these functions have PARAMETER: An int or more storing values.
- Insert a new node, storing a given value, to the front of the calling object.
- Insert a new node, storing a given value, at the end of the calling object.
- Insert a new node, storing a given value, between the first and second node in the calling object.
- Insert a new node, storing a given value, before the last node of the calling object.
- Given two int parameters, value1 and value2, insert a new node, storing value1, before the node that stores value2.
- Given two int parameters, value1 and value2, insert a new node, storing value1, after the node that stores value2.
- Delete the first node of the calling object.
- Delete the second node of the calling object.
Thank you very much
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
