{"id":"7286554e-ed23-4796-94d8-7777d152de78","name":"Right View Of A Binarytree","description":"1. Given a Binary Tree, print Right view of it. \r\n2. Right view of a Binary Tree is set of nodes visible when tree is visited from Right side.\r\n","inputFormat":"Input is managed for you.\r\n","outputFormat":"Output is managed for you.\r\n","constraints":"0 &lt;= Number of Nodes &lt;= 10^5\r\n-1000 &lt;= value of Node data &lt;= 1000\r\n","sampleCode":{"cpp":{"code":"#include <iostream>\r\n#include <vector>\r\n#include <queue>\r\nusing namespace std;\r\n\r\nclass TreeNode\r\n{\r\npublic:\r\n int val = 0;\r\n TreeNode *left = nullptr;\r\n TreeNode *right = nullptr;\r\n\r\n TreeNode(int val)\r\n {\r\n this->val = val;\r\n }\r\n};\r\n\r\nclass levelPair\r\n{\r\npublic:\r\n TreeNode *par = nullptr;\r\n int lb = -(int)1e8;\r\n int rb = (int)1e8;\r\n\r\n levelPair()\r\n {\r\n }\r\n\r\n levelPair(TreeNode *par, int lb, int rb)\r\n {\r\n this->par = par;\r\n this->lb = lb;\r\n this->rb = rb;\r\n }\r\n};\r\n\r\nvector<int> rightView(TreeNode *root)\r\n{\r\n}\r\n\r\n// input_section=================================================\r\n\r\nTreeNode *createTree(vector<int> &arr, vector<int> &IDX)\r\n{\r\n\r\n if (IDX[0] > arr.size() || arr[IDX[0]] == -1)\r\n {\r\n IDX[0]++;\r\n return nullptr;\r\n }\r\n\r\n TreeNode *node = new TreeNode(arr[IDX[0]++]);\r\n node->left = createTree(arr, IDX);\r\n node->right = createTree(arr, IDX);\r\n\r\n return node;\r\n}\r\n\r\nvoid solve()\r\n{\r\n int n;\r\n cin >> n;\r\n vector<int> arr(n, 0);\r\n for (int i = 0; i < n; i++)\r\n {\r\n cin >> arr[i];\r\n }\r\n\r\n vector<int> IDX(1, 0);\r\n TreeNode *root = createTree(arr, IDX);\r\n\r\n vector<int> ans = rightView(root);\r\n for (int i : ans)\r\n cout << i << endl;\r\n}\r\n\r\nint main()\r\n{\r\n solve();\r\n return 0;\r\n}"},"java":{"code":"import java.util.*;\r\n\r\npublic class Main {\r\n public static Scanner scn = new Scanner(System.in);\r\n\r\n public static class TreeNode {\r\n int val = 0;\r\n TreeNode left = null;\r\n TreeNode right = null;\r\n\r\n TreeNode(int val) {\r\n this.val = val;\r\n }\r\n }\r\n\r\n public static ArrayList<Integer> rightView(TreeNode root) {\r\n return null;\r\n\r\n }\r\n\r\n // input_section=================================================\r\n\r\n public static TreeNode createTree(int[] arr, int[] IDX) {\r\n if (IDX[0] > arr.length || arr[IDX[0]] == -1) {\r\n IDX[0]++;\r\n return null;\r\n }\r\n TreeNode node = new TreeNode(arr[IDX[0]++]);\r\n node.left = createTree(arr, IDX);\r\n node.right = createTree(arr, IDX);\r\n\r\n return node;\r\n }\r\n\r\n public static void solve() {\r\n int n = scn.nextInt();\r\n int[] arr = new int[n];\r\n for (int i = 0; i < n; i++)\r\n arr[i] = scn.nextInt();\r\n\r\n int[] IDX = new int[1];\r\n TreeNode root = createTree(arr, IDX);\r\n\r\n ArrayList<Integer> ans = rightView(root);\r\n for(Integer i : ans) System.out.println(i); \r\n }\r\n\r\n public static void main(String[] args) {\r\n solve();\r\n }\r\n}"},"ruby":{"code":""},"python":{"code":""},"javascript":{"code":""}},"points":10,"difficulty":"easy","sampleInput":"15\r\n1\r\n1\r\n-1\r\n1\r\n1\r\n-1\r\n1\r\n-1\r\n-1\r\n1\r\n-1\r\n-1\r\n1\r\n-1\r\n-1","sampleOutput":"1\r\n1\r\n1\r\n1\r\n1\r\n","questionVideo":"https://www.youtube.com/embed/fcmxvpwFHgk","hints":[],"associated":[],"solutionSeen":false,"tags":[],"meta":{"path":[{"id":0,"name":"home"},{"id":"0c54b191-7b99-4f2c-acb3-e7f2ec748b2a","name":"Data Structures and Algorithms","slug":"data-structures-and-algorithms","type":0},{"id":"2e9df04c-be14-441c-9a18-8b5a8ca6596d","name":"Trees For Intermediate","slug":"trees-for-intermediate-9994","type":0},{"id":"91f100d1-a1a6-4851-bad3-d1d53c9571bd","name":"Right View Of A Binarytree","slug":"right-view-of-a-binarytree","type":1}],"next":{"id":"0f60f352-3ba8-43c8-b624-a211356b1799","name":"Right View of a Binary Tree","type":3,"slug":"right-view-of-a-binary-tree"},"prev":{"id":"ca5655a5-0922-4913-985d-3467a965bcbc","name":"Serialize and Deserialize N-Ary Tree","type":3,"slug":"serialize-and-deserialize-n-ary-tree"}}}

Right View Of A Binarytree

1. Given a Binary Tree, print Right view of it. 2. Right view of a Binary Tree is set of nodes visible when tree is visited from Right side.

{"id":"7286554e-ed23-4796-94d8-7777d152de78","name":"Right View Of A Binarytree","description":"1. Given a Binary Tree, print Right view of it. \r\n2. Right view of a Binary Tree is set of nodes visible when tree is visited from Right side.\r\n","inputFormat":"Input is managed for you.\r\n","outputFormat":"Output is managed for you.\r\n","constraints":"0 &lt;= Number of Nodes &lt;= 10^5\r\n-1000 &lt;= value of Node data &lt;= 1000\r\n","sampleCode":{"cpp":{"code":"#include <iostream>\r\n#include <vector>\r\n#include <queue>\r\nusing namespace std;\r\n\r\nclass TreeNode\r\n{\r\npublic:\r\n int val = 0;\r\n TreeNode *left = nullptr;\r\n TreeNode *right = nullptr;\r\n\r\n TreeNode(int val)\r\n {\r\n this->val = val;\r\n }\r\n};\r\n\r\nclass levelPair\r\n{\r\npublic:\r\n TreeNode *par = nullptr;\r\n int lb = -(int)1e8;\r\n int rb = (int)1e8;\r\n\r\n levelPair()\r\n {\r\n }\r\n\r\n levelPair(TreeNode *par, int lb, int rb)\r\n {\r\n this->par = par;\r\n this->lb = lb;\r\n this->rb = rb;\r\n }\r\n};\r\n\r\nvector<int> rightView(TreeNode *root)\r\n{\r\n}\r\n\r\n// input_section=================================================\r\n\r\nTreeNode *createTree(vector<int> &arr, vector<int> &IDX)\r\n{\r\n\r\n if (IDX[0] > arr.size() || arr[IDX[0]] == -1)\r\n {\r\n IDX[0]++;\r\n return nullptr;\r\n }\r\n\r\n TreeNode *node = new TreeNode(arr[IDX[0]++]);\r\n node->left = createTree(arr, IDX);\r\n node->right = createTree(arr, IDX);\r\n\r\n return node;\r\n}\r\n\r\nvoid solve()\r\n{\r\n int n;\r\n cin >> n;\r\n vector<int> arr(n, 0);\r\n for (int i = 0; i < n; i++)\r\n {\r\n cin >> arr[i];\r\n }\r\n\r\n vector<int> IDX(1, 0);\r\n TreeNode *root = createTree(arr, IDX);\r\n\r\n vector<int> ans = rightView(root);\r\n for (int i : ans)\r\n cout << i << endl;\r\n}\r\n\r\nint main()\r\n{\r\n solve();\r\n return 0;\r\n}"},"java":{"code":"import java.util.*;\r\n\r\npublic class Main {\r\n public static Scanner scn = new Scanner(System.in);\r\n\r\n public static class TreeNode {\r\n int val = 0;\r\n TreeNode left = null;\r\n TreeNode right = null;\r\n\r\n TreeNode(int val) {\r\n this.val = val;\r\n }\r\n }\r\n\r\n public static ArrayList<Integer> rightView(TreeNode root) {\r\n return null;\r\n\r\n }\r\n\r\n // input_section=================================================\r\n\r\n public static TreeNode createTree(int[] arr, int[] IDX) {\r\n if (IDX[0] > arr.length || arr[IDX[0]] == -1) {\r\n IDX[0]++;\r\n return null;\r\n }\r\n TreeNode node = new TreeNode(arr[IDX[0]++]);\r\n node.left = createTree(arr, IDX);\r\n node.right = createTree(arr, IDX);\r\n\r\n return node;\r\n }\r\n\r\n public static void solve() {\r\n int n = scn.nextInt();\r\n int[] arr = new int[n];\r\n for (int i = 0; i < n; i++)\r\n arr[i] = scn.nextInt();\r\n\r\n int[] IDX = new int[1];\r\n TreeNode root = createTree(arr, IDX);\r\n\r\n ArrayList<Integer> ans = rightView(root);\r\n for(Integer i : ans) System.out.println(i); \r\n }\r\n\r\n public static void main(String[] args) {\r\n solve();\r\n }\r\n}"},"ruby":{"code":""},"python":{"code":""},"javascript":{"code":""}},"points":10,"difficulty":"easy","sampleInput":"15\r\n1\r\n1\r\n-1\r\n1\r\n1\r\n-1\r\n1\r\n-1\r\n-1\r\n1\r\n-1\r\n-1\r\n1\r\n-1\r\n-1","sampleOutput":"1\r\n1\r\n1\r\n1\r\n1\r\n","questionVideo":"https://www.youtube.com/embed/fcmxvpwFHgk","hints":[],"associated":[],"solutionSeen":false,"tags":[],"meta":{"path":[{"id":0,"name":"home"},{"id":"0c54b191-7b99-4f2c-acb3-e7f2ec748b2a","name":"Data Structures and Algorithms","slug":"data-structures-and-algorithms","type":0},{"id":"2e9df04c-be14-441c-9a18-8b5a8ca6596d","name":"Trees For Intermediate","slug":"trees-for-intermediate-9994","type":0},{"id":"91f100d1-a1a6-4851-bad3-d1d53c9571bd","name":"Right View Of A Binarytree","slug":"right-view-of-a-binarytree","type":1}],"next":{"id":"0f60f352-3ba8-43c8-b624-a211356b1799","name":"Right View of a Binary Tree","type":3,"slug":"right-view-of-a-binary-tree"},"prev":{"id":"ca5655a5-0922-4913-985d-3467a965bcbc","name":"Serialize and Deserialize N-Ary Tree","type":3,"slug":"serialize-and-deserialize-n-ary-tree"}}}
plane

Editor


Loading...

Right View Of A Binarytree

easy

1. Given a Binary Tree, print Right view of it. 2. Right view of a Binary Tree is set of nodes visible when tree is visited from Right side.

Constraints

0 <= Number of Nodes <= 10^5 -1000 <= value of Node data <= 1000

Format

Input

Input is managed for you.

Output

Output is managed for you.

Example

Sample Input

15 1 1 -1 1 1 -1 1 -1 -1 1 -1 -1 1 -1 -1

Sample Output

1 1 1 1 1

Question Video

Discussions

Show Discussion

Related Resources

related resources

Turning Off Zen Mode