https://github.com/dnutiu/dsa
A repository containing various data structures and algorithms implemented in Kotlin and Java
https://github.com/dnutiu/dsa
algorithms data-structures kotlin
Last synced: 7 months ago
JSON representation
A repository containing various data structures and algorithms implemented in Kotlin and Java
- Host: GitHub
- URL: https://github.com/dnutiu/dsa
- Owner: dnutiu
- Created: 2024-04-13T20:14:33.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-11-15T22:30:59.000Z (over 1 year ago)
- Last Synced: 2025-05-30T11:55:52.699Z (10 months ago)
- Topics: algorithms, data-structures, kotlin
- Language: Java
- Homepage:
- Size: 85 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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 Kotlin & 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
* Set (Java) [Implementation](https://github.com/dnutiu/dsa/blob/master/src/main/java/data_structures/set/Set.java) | [Tests](https://github.com/dnutiu/dsa/blob/master/src/test/java/data_structures/set/SetTest.java)
* Linked List (Kotlin) [Implementation](https://github.com/dnutiu/dsa/blob/master/src/main/kotlin/data_structures/linked_list/LinkedList.kt) | [Tests](https://github.com/dnutiu/dsa/blob/master/src/test/kotlin/data_structures/linked_list/LinkedListTest.kt)
* Linked List (Java) [Implementation](https://github.com/dnutiu/dsa/tree/master/src/main/java/data_structures/linked_list) | [Tests](https://github.com/dnutiu/dsa/blob/master/src/test/java/data_structures/linked_list/JavaLinkedListTest.java)
## Ranking
* BM25+ (Kotlin) [Implementation](https://github.com/dnutiu/dsa/blob/master/src/main/kotlin/ranking/bm25/Bm25Plus.kt) | [Tests](https://github.com/dnutiu/dsa/blob/master/src/test/kotlin/ranking/bm25/BM25PlusTest.kt) | [Reference Paper](http://www.cs.otago.ac.nz/homepages/andrew/papers/2014-2.pdf)
* BM25+ (Java) [Implementation](https://github.com/dnutiu/dsa/tree/master/src/main/java/ranking/bm25) | [Tests](https://github.com/dnutiu/dsa/blob/master/src/test/java/ranking/Bm25PlusTest.java) | [Reference Paper](http://www.cs.otago.ac.nz/homepages/andrew/papers/2014-2.pdf)