An open API service indexing awesome lists of open source software.

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...

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)