836. Preorder Traversal of Binary Tree

EasyTreesBinary TreeTraversalDFS

Given the root of a binary tree, return its preorder traversal (node, left subtree, right subtree) as an array of node values. The tree is given as a level-order array with null for missing children.

Input: A level-order array of the tree.

Output: Array — node values in preorder.

Examples

Example 1
Input: [1,2,3,4,5,null,6]
Output: [1,2,4,5,3,6]
Explanation: Root, left, right order.
Example 2
Input: [1]
Output: [1]
Explanation: Single node.
Example 3
Input: []
Output: []
Explanation: Empty tree.

Constraints

Asked by

TCSInfosysWiproCognizantCapgemini
Solve this problem in the editor →