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

https://github.com/beneite/datastructure

This repository contains java program for Data structure & Algorithm
https://github.com/beneite/datastructure

Last synced: 2 months ago
JSON representation

This repository contains java program for Data structure & Algorithm

Awesome Lists containing this project

README

        

# Below is the table along with questions and mapping.

> [!TIP]
> The below table contains the Algorithm

| **Topic** | **Sub Topics** |
|:---------:|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------:|
| Sorting | [Bubble Sort](src/main/java/Algorithms/sorting/bubble_sort/bubblesort_Notes.md) [Insertion Sort](src/main/java/Algorithms/sorting/insertion_sort/insertionSortNotes.md) |

> [!TIP]
> The below table contains the mapping of questions with concepts.

| **Question** | **Concepts used** |
|:----------------------------------------------------------------------------------------------------------------------------:|:---------------------------------------:|
| [single-number](https://leetcode.com/problems/single-number/description/) | ***Arrays, Hashmap, Bit manipulation*** |
| [move-zeroes](https://leetcode.com/problems/move-zeroes/description/) | ***Arrays*** |
| [best-time-to-buy-and-sell-stock](https://leetcode.com/problems/best-time-to-buy-and-sell-stock/) | ***not completed*** |
| [ReturnTheNameWithLongestLength.java](src/main/java/dataStructurePractise/array/sorting/ReturnTheNameWithLongestLength.java) | Priority Queue |
| [KthSmallestElement](src/main/java/dataStructurePractise/array/largestSmallestElement/KthSmallestElement.java) | Priority Queue |