https://github.com/anshumanmahato/datastructures-cpp
These are bunch of programs that I am working on while learning data structures...
https://github.com/anshumanmahato/datastructures-cpp
Last synced: 3 months ago
JSON representation
These are bunch of programs that I am working on while learning data structures...
- Host: GitHub
- URL: https://github.com/anshumanmahato/datastructures-cpp
- Owner: AnshumanMahato
- Created: 2020-09-30T05:15:31.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-07-07T06:21:31.000Z (almost 4 years ago)
- Last Synced: 2025-03-19T10:47:17.226Z (3 months ago)
- Language: C++
- Size: 1000 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DataStructures-CPP
These are a bunch of programs that I am working on while learning data structures...
## Arrays
- Array Class Creation
- Merge Sort
- String Reverse
- [Max Sum](https://leetcode.com/problems/maximum-subarray/description/)
- [Duplicates](https://leetcode.com/problems/contains-duplicate/description/)
- [Move Zeros](https://leetcode.com/problems/move-zeroes/description/)
- [Rotate](https://leetcode.com/problems/rotate-array/description/)
- [Reverse Array](https://www.hackerrank.com/challenges/arrays-ds/problem)
- [Dynamic Array](https://www.hackerrank.com/challenges/dynamic-array/problem)
- [Sparse Arrays](https://www.hackerrank.com/challenges/sparse-arrays/problem)
- [Left Rotation](https://www.hackerrank.com/challenges/array-left-rotation/problem)
- [Array Manipulation](https://www.hackerrank.com/challenges/crush/problem)
- [Variable Sized Array](https://www.hackerrank.com/challenges/variable-sized-arrays/problem)
- [Longest Pallindromic Substring](https://leetcode.com/problems/longest-palindromic-substring/)## Hash Maps
- Hash Map (implementation and all basic to advance level problems with solutions)
## Linked List
- Singly Linked List Implementation
- Doubly Linked List Implementation## Random Problems
- [Covid Run](https://www.codechef.com/OCT20B/problems/CVDRUN)