Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/careercup/ctci
/ BiNode
Class
BiNode
java/Chapter 17/Question17_13/BiNode.java:3–10 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
package
Question17_13;
2
3
public
class
BiNode {
4
public
BiNode node1;
5
public
BiNode node2;
6
public
int
data;
7
public
BiNode(
int
d) {
8
data = d;
9
}
10
}
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected