MCPcopy Create free account
hub / github.com/Deepali-Srivastava/data-structures-and-algorithms-in-java / Node

Class Node

stack/stackLinked/Node.java:8–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6package stackLinked;
7
8public class Node
9{
10 public int info;
11 public Node link;
12
13 public Node(int i)
14 {
15 info=i;
16 link=null;
17 }
18}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected