https://github.com/dnutiu/dsa-java
A repository containing various data structures and algorithms implemented in Java.
https://github.com/dnutiu/dsa-java
algorithms data-structures java java-21
Last synced: 10 months ago
JSON representation
A repository containing various data structures and algorithms implemented in Java.
- Host: GitHub
- URL: https://github.com/dnutiu/dsa-java
- Owner: dnutiu
- License: mit
- Created: 2024-11-09T21:37:34.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-12T18:55:41.000Z (over 1 year ago)
- Last Synced: 2025-06-13T11:05:48.947Z (10 months ago)
- Topics: algorithms, data-structures, java, java-21
- Language: Java
- Homepage:
- Size: 85 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Data Structures and Algorithms
This repository is my self study guide for data structures and algorithms. I implement them from scratch in Java and then write unit test for them.
What better way to learn a language and new concepts exists other than practicing them.
## Data Structures
* Linked List [Implementation](https://github.com/dnutiu/dsa-java/blob/main/src/main/java/dev/nuculabs/dsa/data_structures/linked_list/LinkedList.java) | [Tests](https://github.com/dnutiu/dsa-java/blob/main/src/test/java/dev/nuculabs/dsa/data_structures/linked_list/LinkedListTest.java)
## Ranking
* BM25+ [Implementation](https://github.com/dnutiu/dsa-java/blob/main/src/main/java/dev/nuculabs/dsa/ranking/bm25/Bm25Plus.java) | [Tests](https://github.com/dnutiu/dsa-java/blob/main/src/test/java/dev/nuculabs/dsa/ranking/Bm25PlusTest.java) | [Reference Paper](http://www.cs.otago.ac.nz/homepages/andrew/papers/2014-2.pdf)