Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/kunal-kushwaha/DSA-Bootcamp-Java
/ insert
Method
insert
lectures/20-trees/code/introduction/BST.java:34–36 ·
view source on GitHub ↗
(int value)
Source
from the content-addressed store, hash-verified
32
}
33
34
public
void
insert(
int
value) {
35
root = insert(value, root);
36
}
37
38
private
Node insert(
int
value, Node node) {
39
if
(node == null) {
Callers
2
populate
Method · 0.95
populatedSorted
Method · 0.95
Calls
2
height
Method · 0.95
max
Method · 0.45
Tested by
no test coverage detected