write a function to insert node at the specified position in doubly linked list
Answers
Answered by
0
Explanation:
1.Assign newNode->next = temp->next.
2.Assign newNode->prev as temp->next.
3. Assign temp->next as newNode.
4.Assgin (temp->next)->prev as newNode->next
Similar questions