In this line of code:
Node* insert(Node *head,int data)
What is the difference between Node* insert
and Node *head
?
Are they both pointers? And which is better?
In this line of code:
Node* insert(Node *head,int data)
What is the difference between Node* insert
and Node *head
?
Are they both pointers? And which is better?