This file contains hidden or 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 list; | |
import java.util.Scanner; | |
class Node | |
{ | |
int info; | |
Node next; | |
} | |
// Node Has two Parts | |
// 1. information | |
// 2. pointer value |