Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thehxdev/dsa
My implementation of algorithms and data structures
https://github.com/thehxdev/dsa
algoritms c data-structures
Last synced: 2 months ago
JSON representation
My implementation of algorithms and data structures
- Host: GitHub
- URL: https://github.com/thehxdev/dsa
- Owner: thehxdev
- Created: 2023-06-13T10:29:43.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-27T09:30:02.000Z (5 months ago)
- Last Synced: 2024-08-27T18:16:11.323Z (5 months ago)
- Topics: algoritms, c, data-structures
- Language: C
- Homepage:
- Size: 198 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Algorithms & Data Structures
My implementation of algorithms and data structures.
## Data Structures
- [Vector (Dynamic Array)](https://github.com/thehxdev/algo-dt/tree/main/data-structures/vector)
- [Singly Linked-List](https://github.com/thehxdev/algo-ds/tree/main/data-structures/singly-linked-list)
- [Doubly Linked-List](https://github.com/thehxdev/algo-ds/tree/main/data-structures/doubly-linked-list)
- [Stack using Linked-List](https://github.com/thehxdev/algo-ds/tree/main/data-structures/stack-ll)
- [Stack using Array](https://github.com/thehxdev/algo-ds/tree/main/data-structures/stack-a)
- [Queue](https://github.com/thehxdev/algo-ds/tree/main/data-structures/queue)
- [Hash Table](https://github.com/thehxdev/algo-ds/tree/main/data-structures/hash-table)
- [Binary Tree](https://github.com/thehxdev/algo-ds/tree/main/data-structures/b-tree)
- [General Tree](https://github.com/thehxdev/algo-ds/tree/main/data-structures/general-tree)
- [String](https://github.com/thehxdev/algo-ds/tree/main/data-structures/string)## Algorithms
- Sorting
- [Bubble-Sort](https://github.com/thehxdev/algo-dt/tree/main/algorithms/sorting/bubble-sort)- Searching
- [Linear-Search](https://github.com/thehxdev/algo-dt/tree/main/algorithms/searching/linear-search)
- [Binary-Search](https://github.com/thehxdev/algo-dt/tree/main/algorithms/searching/binary-search)## Coding Challenges
Solutions for coding challenges.
### AoC (Advent of Code)
- 2023
- [day 1](https://github.com/thehxdev/algo-ds/tree/main/challenges/advent-of-code/2023/d1)- 2022
- [day 1](https://github.com/thehxdev/algo-ds/tree/main/challenges/advent-of-code/2022/d1)- 2021
- [day 1](https://github.com/thehxdev/algo-ds/tree/main/challenges/advent-of-code/2021/d1)
- [day 2](https://github.com/thehxdev/algo-ds/tree/main/challenges/advent-of-code/2021/d2)
- [day 3](https://github.com/thehxdev/algo-ds/tree/main/challenges/advent-of-code/2021/d3)
- [day 4](https://github.com/thehxdev/algo-ds/tree/main/challenges/advent-of-code/2021/d4)
- [day 6](https://github.com/thehxdev/algo-ds/tree/main/challenges/advent-of-code/2021/d6)---
### LeetCode
- [1](https://github.com/thehxdev/algo-ds/tree/main/challenges/leetcode/1)
---
### Not Categorized
- [random length sub-lists](https://github.com/thehxdev/algo-ds/tree/main/challenges/not-categorized/random-length-sublists)