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