SHARE
TWEET
Untitled
a guest
Jan 29th, 2018
50
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- void top_view(Node root)
- {
- top_view(root, 0);
- }
- void top_view(Node root, int side)
- {
- if (root != null) {
- if (side <= 0) {
- top_view(root.left, -1);
- }
- System.out.print(root.data + " ");
- if (side >= 0) {
- top_view(root.right, 1);
- }
- }
- }
RAW Paste Data

