(String[] args)
| 1 | public 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 | } |
| 10 | class Node |
| 11 | { |
nothing calls this directly
no outgoing calls
no test coverage detected