Category: DSA Basics
-
DSA BasicsDSA: Modular Arithmetic
What is Modular Arithmetic in DSA? Modular arithmetic is an arithmetic structure for integers, in which numbers “wrap around” when…
April 23, 2023
-
DSA BasicsSorting in DSA
What is Sorting in DSA? Sorting is a fundamental function in data structures and computer science. It is the process…
April 25, 2023
-
DSA BasicsBubble Sort
What is Bubble Sort? When neighboring components are arranged incorrectly, the straightforward comparison-based sorting algorithm known as Bubble Sort continuously…
April 26, 2023
-
DSA BasicsPointers in DSA
What are pointers? Pointers are variables that are used to save the position of a value in memory. A memory…
May 22, 2023
-
DSA BasicsStack in DSA
What is a Stack? A stack is an abstract data type that adheres to the Last-In-First-Out (LIFO) principle in the…
May 23, 2023
-
DSA BasicsQueues in DSA
What is a Queue in DSA? A queue is a linear data structure that holds elements in a certain order. It accesses items using the FIFO (First In First Out) method. It can only be changed by adding data entities at one end…
May 26, 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 BasicsTypes of Views & Binary Trees
In binary trees, the views and types refer to different perspectives and classifications of the tree structure. Types of Views…
May 29, 2023
-
DSA BasicsBinary 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
-
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
-
DSA BasicsDSA: Heap
A heap is a specialized tree-based data structure that satisfies the heap property. It is commonly used to implement priority…
June 10, 2023