Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ahmedsomaa/data-structures-and-algorithms
A repo that contains data structures and algorithms concepts and their implementations in TypeScript.
https://github.com/ahmedsomaa/data-structures-and-algorithms
Last synced: 6 days ago
JSON representation
A repo that contains data structures and algorithms concepts and their implementations in TypeScript.
- Host: GitHub
- URL: https://github.com/ahmedsomaa/data-structures-and-algorithms
- Owner: ahmedsomaa
- Created: 2024-03-13T14:16:53.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-05-21T18:51:58.000Z (7 months ago)
- Last Synced: 2024-05-22T03:01:08.442Z (7 months ago)
- Language: TypeScript
- Homepage:
- Size: 854 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Data Structure & Algorithms
A repo that contains data structures and algorithms concepts and their implementations in TypeScript.
## Purpose
The aim of this repo is to help students study data structures and algorithms whether for a job, an interview...etc.
## Data Structures
A data structure is a way of organizing, managing, and storing data in a computer so that it can be accessed and modified efficiently. Data structures are crucial to creating fast and powerful algorithms, helping manage very large amounts of data, such as databases and internet indexing services. They are also essential for designing and maintaining various types of software, including operating systems, games, and networked applications.
- [Integers](./data-structures/integers/integers.md)
- [Arrays](./data-structures/arrays/arrays.md)
- [Objects (Hash Tables)](./data-structures/objects/objects.md)