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
- Host: GitHub
- URL: https://github.com/sathiyapramod/ds_algorithms
- Owner: Sathiyapramod
- Created: 2023-03-17T13:29:21.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2025-02-07T05:16:30.000Z (over 1 year ago)
- Last Synced: 2025-02-07T06:22:44.957Z (over 1 year ago)
- Topics: algorithms, algorithms-and-data-structures, computer-science, datastructures, datastructures-algorithms, interface, java, javascript, types, typescript
- Language: JavaScript
- Homepage:
- Size: 2.26 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)