Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Written by Array Alchemist
LeetCode wizard with 75 conquered challenges under my belt.
Turning algorithm nightmares into "Aha!" moments, one explanation at a time.
Join me to level up your coding skills – from interviews to real-world application!
You are given two integer arrays preorder and inorder.
Rebuild the binary tree from the preorder and inorder traversals and return its root.
Example 1:
Example 2:
One thing i've come to the conclusion is that, after solving these many leetcode question. Every problem can be solved with a solution that is elegant and intuitive i.e easy to comprehend. Code can be written in a level that could a poem to the reader.
For example this question ask us to build a binary tree. A tree has a node that has left node and right node at each node. So based on this we can solve the problem.
Here we can already sense that it's a recursive problem.
Now, the question is how can we utilize our PreOrder and InOrder to solve this question?
Here in the image: we are given preOrder and inOrder, we see 3 is the root node.
A simple point to be noted here even if just
vs
Most of the nodes constructor expects null not undefined if we the node does not exist.