MCPcopy Create free account
hub / github.com/apna-college/Alpha / Node

Method Node

13_Stacks/StackLL.java:7–10  ·  view source on GitHub ↗
(int data)

Source from the content-addressed store, hash-verified

5 Node next;
6
7 Node(int data) {
8 this.data = data;
9 next = null;
10 }
11 }
12
13 static class Stack {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected