MCPcopy Create free account
hub / github.com/Tiwarishashwat/InterviewCodes / main

Method main

TreeRepBinary.java:3–8  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

1public class TreeRepBinary
2{
3 public static void main(String[] args) {
4 Node root = new Node(1);
5 root.left = new Node(2);
6 root.right = new Node(3);
7 root.left.left = new Node(4);
8 }
9}
10class Node
11{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected