Data Structures and Algorithm

A data structure is a defined way to store and organize data. And, an algorithm is a technique consists collection of steps to solve a particular problem. Here is the list of articles related to Data Structure and Algorithms implemented using JavaScript.

Why a HashMap is faster than an Array?

Why a HashMap is faster than Array?

In computer science, storing and retrieving objects or elements from a group of things is very important. The way you store data and how easily (or better to...

.
1/15/2024
.
1 min read

Mastering Binary Search: A Comprehensive Guide for Programmers

Binary search is a vital computer science algorithm widely used in various applications. The algorithm is an efficient way to search for a specific item in a...

.
7/30/2023
.
1 min read

Simple explanation of Bit Manipulation for DSA in Javascript | Bit Masking

This is the second part of the Bit Manipulation two-blog series. Bit manipulation is the act of algorithmically manipulating bits or other pieces of data sho...

.
2/27/2023
.
1 min read
Simple explanation on Bit Manipulation for DSA in Javascript | Bit Masking

Simple explanation of Bit Manipulation for DSA in JavaScript | Number System

So we have arrived now at our next stop in the series of “Understanding Data Structure and Algorithms with JavaScript 🚀”, which is the Bit Manipulation. Bit...

.
11/21/2022
.
1 min read
Simple explanation on Bit Manipulation for DSA in Javascript | Number System