Published onJune 18, 2024Construct Binary Tree from Preorder and Inorder TraversalpythonalgorithmtreeDFSBinary-search-treeGiven two integer arrays preorder and inorder where preorder is the preorder traversal of a binary tree and inorder is the inorder traversal of the same tree, construct and return the binary tree.
Published onJune 17, 2024Minimum Distance between DST nodespythonalgorithmtreeDFSBinary-search-treeGiven the root of a Binary Search Tree (BST), return the minimum difference between the values of any two different nodes in the tree.
Published onJune 16, 2024Range Sum of BSTpythonalgorithmtreeDFSBFSBinary-search-treeGiven the root of a Binary Search Tree (BST), convert it to a Greater Sum Tree
Published onJune 15, 2024Binary Search Tree to Greater Sum TreepythonalgorithmtreeDFSBinary-search-treeGiven the root of a Binary Search Tree (BST), convert it to a Greater Sum Tree
Published onJune 14, 2024Convert Sorted Array to Binary Search TreepythonalgorithmtreeBinary-search-treeGiven an integer array nums where the elements are sorted in ascending order, convert it to a height-balanced binary search tree.