Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shishir-grez/data-structures-algorithms
Solutions to various questions for Data Structures and Algorithms
https://github.com/shishir-grez/data-structures-algorithms
algorithms cpp data-structures python
Last synced: 3 days ago
JSON representation
Solutions to various questions for Data Structures and Algorithms
- Host: GitHub
- URL: https://github.com/shishir-grez/data-structures-algorithms
- Owner: Shishir-grez
- Created: 2024-12-07T15:55:29.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2025-01-15T05:55:10.000Z (12 days ago)
- Last Synced: 2025-01-15T07:39:34.778Z (12 days ago)
- Topics: algorithms, cpp, data-structures, python
- Language: C++
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Solutions to Questions related to DataStructures and Algorithms.
Data Structure:
1.[Arrays+Hashing](https://github.com/Shishir-grez/Data-Structures-Algorithms/tree/main?tab=readme-ov-file#arrayshashing)
2.[Trie](https://github.com/Shishir-grez/Data-Structures-Algorithms/tree/main?tab=readme-ov-file#trie)## Arrays+Hashing
1.[Next Permutation](https://github.com/Shishir-grez/Data-Structures-Algorithms/blob/main/ArraysHashing/NextPermutation)
2.[2Sum](https://github.com/Shishir-grez/Data-Structures-Algorithms/blob/main/ArraysHashing/2Sum)
## Trie
1.[Insertion of Character in Trie](https://github.com/Shishir-grez/Data-Structures-Algorithms/blob/main/Trie/Insert)
2.[Distinct Substrings of String](https://github.com/Shishir-grez/Data-Structures-Algorithms/blob/main/Trie/DistinctSubstringsofString)