https://github.com/lambertse/ds-alg-sysdesign
Data structures and Algorithm + System design repo. Focus on advance and interesting topic
https://github.com/lambertse/ds-alg-sysdesign
cpp17 datastructures-algorithms system-design template-metaprogramming
Last synced: 4 months ago
JSON representation
Data structures and Algorithm + System design repo. Focus on advance and interesting topic
- Host: GitHub
- URL: https://github.com/lambertse/ds-alg-sysdesign
- Owner: lambertse
- Created: 2025-02-18T00:45:04.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2025-02-20T23:25:33.000Z (4 months ago)
- Last Synced: 2025-02-21T00:41:50.048Z (4 months ago)
- Topics: cpp17, datastructures-algorithms, system-design, template-metaprogramming
- Language: C++
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Data Structures and Algorithms Topics
This repository contains implementations and explanations of various data structures and algorithms.
## Data Structures
### Skip List
- [ ] Implement a skip list in `C++`, using templates to support different data types.
- [ ] Initialize the skip list with a given array of elements.
- [ ] Insert a new element into the skip list.
- [ ] Delete an element from the skip list.
- [ ] Search for an element in the skip list.### Geohash
- [ ] Use base 32 characters to encode a latitude and longitude pair into a geohash string.
- [ ] Decode a geohash string into a latitude and longitude pair.
- [ ] Find bounds and adjacent geohashes from strings.## Algorithms
- [ ] Add sorting algorithms (e.g., quicksort, mergesort).
- [ ] Implement search algorithms (e.g., binary search, depth-first search).
- [ ] Explore dynamic programming techniques.