Shreyansh Jain
Shreyansh Jain's Blog

Shreyansh Jain's Blog

Follow
Follow
homeGitbadgesnewsletter
Series

Data Structures and Algorithms

In this series, I will be sharing insightful articles dedicated to data structures and algorithms.

Articles in this series

Binary Search

Sep 2, 20233 min read

Introduction Binary Search is a powerful algorithm designed to locate the position of an element within a sorted array. The central principle of...

Binary Search

Heap Data Structures (Part - 1)

Sep 2, 20234 min read

Before diving into heap data structure, let's first understand what is a complete binary tree. Complete binary tree A complete binary tree is a tree...

Heap Data Structures (Part - 1)

Heap Data Structures (Part - 2)

Sep 3, 20234 min read

Pre-requisite I would recommend going through part 1 of the heap data structures for a better understanding. You can read it here:-...

Heap Data Structures (Part - 2)

How vector works internally in C++?

Sep 7, 20234 min read

IntroductionVectors are sequence containers which is a part of the C++ Standard Template Library. They share similarities with arrays, such as using...

How vector works internally in C++?