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.

  1. Insert a new node, storing a given value, to the front of the calling object.
  2. Insert a new node, storing a given value, at the end of the calling object.
  3. Insert a new node, storing a given value, between the first and second node in the calling object.
  4. Insert a new node, storing a given value, before the last node of the calling object.
  5. Given two int parameters, value1 and value2, insert a new node, storing value1, before the node that stores value2.
  6. Given two int parameters, value1 and value2, insert a new node, storing value1, after the node that stores value2.
  7. Delete the first node of the calling object.
  8. Delete the second node of the calling object.

Thank you very much

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!