Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/apna-college/Alpha
/ Node
Method
Node
12_LinkedList.java/LL.java:5–8 ·
view source on GitHub ↗
(int data)
Source
from the content-addressed store, hash-verified
3
int
data;
4
Node next;
5
public
Node(
int
data) {
6
this.data = data;
7
this.next = null;
8
}
9
}
10
public
static
Node head;
11
public
static
Node tail;
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected