Tag: Tree Data Structure
-
PythonDSA: Trees
What is Tree Data Structure? A tree data structure is made up of nodes that are connected via edges. The…
May 14, 2023
-
PythonDSA: Types of Tree
There are various varieties of trees that are often used in the context of Data Structures and Algorithms (DSA). Here…
May 17, 2023
-
DSA BasicsBinary 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
-
DSA BasicsTrees: 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
-
DSA BasicsDSA: Trie
What is a Trie in DSA? A trie, often known as a prefix tree, is a tree-like data structure used…
May 31, 2023