SHARE
TWEET
Untitled
a guest
Jan 29th, 2018
55
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- /*
- class Node
- int data;
- Node left;
- Node right;
- */
- void topView(Node root) {
- if (root == null) return;
- printLeft(root);
- printRight(root.right);
- }
- void printLeft(Node root) {
- if (root == null) return;
- printLeft(root.left);
- System.out.print(root.data + " ");
- }
- void printRight(Node root) {
- if (root == null) return;
- System.out.print(root.data + " ");
- printRight(root.right);
- }
RAW Paste Data

