daily pastebin goal
41%
SHARE
TWEET

Untitled

a guest Jan 29th, 2018 50 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. void top_view(Node root)
  2. {
  3.     top_view(root, 0);
  4. }
  5.  
  6. void top_view(Node root, int side)
  7. {
  8.     if (root != null) {
  9.         if (side <= 0) {
  10.             top_view(root.left, -1);
  11.         }
  12.        
  13.         System.out.print(root.data + " ");
  14.        
  15.         if (side >= 0) {
  16.             top_view(root.right, 1);
  17.         }
  18.     }
  19. }
RAW Paste Data
Pastebin PRO WINTER Special!
Get 40% OFF Pastebin PRO accounts!
Top