An open API service indexing awesome lists of open source software.

https://github.com/sathiyapramod/ds_algorithms


https://github.com/sathiyapramod/ds_algorithms

algorithms algorithms-and-data-structures computer-science datastructures datastructures-algorithms interface java javascript types typescript

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

          

*Data Structures and Algorithms (DSA) in JavaScript and TypeScript*

A comprehensive collection of fundamental data structures and algorithms implemented in JavaScript and TypeScript. This repository serves as a learning resource and reference guide for students looking to improve their problem-solving skills and prepare for technical interviews.

#### Search Algorithms

- Basics
- [Linear Search](./binarysearch.js)
- [Binary Search](./binarysearch.js)

#### Sorting Algorithms

- Basics
- [Bubble Sort](./sorting/bubblesort.js)
- [Merge Sort](./sorting/mergedsort.js)
- [Quick Sort](./sorting/quicksort.js)

### Data Structures

### Basic Data Structures

- [Stack](./Stack/stack.instance.js)
- [Queue](./Queue/queue.instance.js)

#### Abstract Data Types

- [Linked List](./LinkedLists/function.linkedlist.js)
- [Trie](./Tries/addWords.js)