Write C++ statement to do the following
a.make a point to the node containing info 23.
b.make a list point to the node containing 26.
c.make b point to the last node in the list
d.make list point to an empty list
e.set the value of the node containing 25 to 35.
f.create and insert the node with info 10 after the node pointed to by A.
g.delete the node with info 23,also deal locate the memory occupied by this node.
Comments
Leave a comment