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
- Host: GitHub
- URL: https://github.com/beneite/datastructure
- Owner: beneite
- Created: 2023-09-26T17:16:40.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-11-13T17:22:07.000Z (7 months ago)
- Last Synced: 2025-02-01T14:22:11.900Z (4 months ago)
- Language: Java
- Homepage:
- Size: 34.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 |