Skip to content

Instantly share code, notes, and snippets.

@laxmankumar2000
Created March 3, 2021 12:02
Show Gist options
  • Save laxmankumar2000/9d920bd44bef357d794ad11ee1cf304f to your computer and use it in GitHub Desktop.
Save laxmankumar2000/9d920bd44bef357d794ad11ee1cf304f to your computer and use it in GitHub Desktop.
package Genaric;
public class node<t> {
t data;
node<t> next;
public node(t data) {
this.data = data;
next = null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment