MCPcopy Create free account
hub / github.com/careercup/ctci / concat

Method concat

java/Chapter 17/Question17_13/QuestionC.java:84–87  ·  view source on GitHub ↗
(BiNode x, BiNode y)

Source from the content-addressed store, hash-verified

82 }
83
84 public static void concat(BiNode x, BiNode y) {
85 x.node2 = y;
86 y.node1 = x;
87 }
88
89 public static void main(String[] args) {
90 BiNode root = createTree();

Callers 1

convertToCircularMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected