Skip to content

mesirendon/datastructures-and-algorithms-js

Repository files navigation

Data Structures and Algorithms

codecov CI

This repository written in JavaScript is a compilation of the most-known data structures and algorithms.

Why JavaScript?

It's usual to see data structures and algorithms taught in Java. However, getting a Java development environment might be troublesome, whereas JavaScript can be run with no more than a few steps.

JavaScript is also a flexible language that allows performing actions that could save time and helps explain a concept. If you want to transpile this knowledge to any other language, it might be easier for you after understanding what's presented here.

The Book

Read all the content of Data Structures and Algorithms here

Using this repository

Prerequisites

You will need to have node installed. I recommend using the nvm installer script, and following their instructions. I recommend using the v20.12.2 version.

Clone

git clone [email protected]:mesirendon/datastructures-and-algorithms-js.git

Install dependencies

npm ci

Run tests

All Tests

Running all tests will show a coverage report.

npm t

Specific

npm run test:case src/singly-linked-lists/__test__/linked-lists.spec.js

Start the app

You can use the provided index.js as a playground by running in a console the following command.

npm start

When you modify the index.js file and save it, the service will be reloaded.

Disclaimer ⚠️

This repository is meant to be used as an educational and research tool. Therefore, you should think twice before copying and pasting the code seen here in your production developments. Also, remember this code is licensed under MIT License, thus limiting any warranty or liability for its use.

Acknowledgement

Trekhleb's JavaScript Algorithms repository heavily inspires this repository.

About

A compilation of the most-known data structures and algorithms

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published