Tag: Binary Tree
-
Binary TreeCount Unival Subtrees in a Binary Tree
A unival tree (short for "universal value tree") is a tree in which all nodes have the same value. Given…
January 6, 2025
-
Data StructureTrees: Lowest Common Ancestor
What is the Lowest Common Ancestor? In a tree, the lowest common ancestor (LCA) of two nodes, n1 and n2,…
May 30, 2023
-
Data StructureBinary Search Tree (BST)
A Binary Search Tree (BST) is a type of binary tree that satisfies the following properties: For any node in…
May 29, 2023
-
Data StructureBinary Trees: Structure & Tree travels
Binary Tree Structure: A binary tree is a tree data structure where each node has at most two children: a…
May 28, 2023