Discussion

Discussion

by Md. Abdur Rahman Roky (221-15-4972) -
Number of replies: 0

01. function of insertion a node after a given node is Make the element to be inserted as a new node.


02. The function of insertion a node as Head.

  • 1. Make the first node of Linked List linked to the new node
  • 2. Remove the head from the original first node of Linked List
  • 3. Make the new node as the Head of the Linked List.