MCPcopy Create free account
hub / github.com/algorithmzuo/algorithm-journey / add

Method add

src/class148/FollowUp1.java:81–83  ·  view source on GitHub ↗
(int num)

Source from the content-addressed store, hash-verified

79 }
80
81 public static void add(int num) {
82 head = add(head, num);
83 }
84
85 public static int add(int i, int num) {
86 if (i == 0) {

Callers 10

mainMethod · 0.95
near1Method · 0.45
randomMethod · 0.45
morrisPreorderMethod · 0.45
morrisInorderMethod · 0.45
collectMethod · 0.45
dijkstraMethod · 0.45
bfsMethod · 0.45
dijkstraMethod · 0.45
dijkstraMethod · 0.45

Calls 2

upMethod · 0.95
maintainMethod · 0.95

Tested by

no test coverage detected