I intend to implement a few algorithms in order to practice those languages.
Algorithm | Java | Scala |
---|---|---|
Dijkstra | ✅ | ⏳ |
Bellman Ford | ⏳ | ⏳ |
Depth-first search | ⏳ | ⏳ |
Breadth-first search | ⏳ | ⏳ |
Kruskal's algorithm | ⏳ | ⏳ |
Algorithm | Java | Scala |
---|---|---|
BinarySearch | ✅ | ⏳ |
Selection algorithm | ⏳ | ⏳ |
Ternary search | ⏳ | ⏳ |
Algorithm | Java | Scala |
---|---|---|
BubbleSort | ✅ | ✅ |
HeapSort | ⏳ | ✅ |
QuickSort | ✅ | ⏳ |
Merge sort | ⏳ | ⏳ |
Algorithm | Java | Scala |
---|---|---|
Balanced Brackets | ✅ | ⏳ |