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