Created
March 3, 2021 12:02
-
-
Save laxmankumar2000/9d920bd44bef357d794ad11ee1cf304f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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