https://github.com/kei-k23/java-algorithms
This is the collection of coding implementation of DSA in Java.
https://github.com/kei-k23/java-algorithms
algorithms algorithms-and-data-structures data-structures dsa java
Last synced: 9 months ago
JSON representation
This is the collection of coding implementation of DSA in Java.
- Host: GitHub
- URL: https://github.com/kei-k23/java-algorithms
- Owner: Kei-K23
- Created: 2024-04-02T18:38:57.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-08T15:21:33.000Z (over 1 year ago)
- Last Synced: 2025-01-31T15:54:04.556Z (11 months ago)
- Topics: algorithms, algorithms-and-data-structures, data-structures, dsa, java
- Language: Java
- Homepage:
- Size: 20.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Data structures and Algorithms
This is the collection of coding implementation of `DSA` in `Java`.
🅱️ means Beginner.
🅰️ means Advanced.
## Data structures
- 🅱️ [Linked list](./linkedList/LinkedList.java)
- 🅱️ [Double linked list](./data%20structure/doubleLinkedList/DoubleLinkedList.java)
- 🅱️ [Queue](./queue/Queue.java)
- 🅱️ [Stack](./stack/Stack.java)
- 🅱️ [Hash Map](./hashMap/HashMap.java)
- 🅱️ [Binary Search Tree](./binarySearchTree/BinarySearchTree.java)
- 🅰️ [Graph](./graph/Graph.java)
## acknowledgement
This project is inspired from awesome repo call [javascript-algorithms](https://github.com/trekhleb/javascript-algorithms).