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

Method Node

12_LinkedList.java/LinkedList.java:6–9  ·  view source on GitHub ↗
(int data)

Source from the content-addressed store, hash-verified

4 Node next;
5
6 public Node(int data) {
7 this.data = data;
8 this.next = null;
9 }
10 }
11 public static Node head;
12 public static Node tail;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected