Assume the data structure
Struct node {
into value;
node *next;
};
assume also that there is a value 10 in the linked list. Write a code that deletes a node with this value.consider all the following cases.
A.the node is at the head
B.the node is in the middle
C.the node is at the end
Comments
Leave a comment