Skip to content

Instantly share code, notes, and snippets.

@prasath95
Created May 8, 2022 07:53
Show Gist options
  • Save prasath95/0d8968665096014be1497843f0421f4c to your computer and use it in GitHub Desktop.
Save prasath95/0d8968665096014be1497843f0421f4c to your computer and use it in GitHub Desktop.
public class LinkedList {
Node headNode;
/*
* insert method
* @value - integer
* */
public void insert(int value){
Node newNode=new Node();
}
}
//for understanding i added Node Class below
public class Node {
int value;
Node nextNode;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment