Skip to content

Instantly share code, notes, and snippets.

@Mahdhir
Created May 2, 2020 13:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mahdhir/81aa50f05df775add004953df21a303b to your computer and use it in GitHub Desktop.
Save Mahdhir/81aa50f05df775add004953df21a303b to your computer and use it in GitHub Desktop.
public void insertAtBeginning(int new_data) {
// insert the data
Node new_node = new Node(new_data);
new_node.next = head;
head = new_node;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment