https://github.com/mhashim6/kotlin-sorting-algorithms
kotlin implementation for various sorting algorithms [school project]
https://github.com/mhashim6/kotlin-sorting-algorithms
bubble-sort factory-pattern functional-programming insertion-sort kotlin kotlin-sorting-algorithms merge-sort oop school-project sorting-algorithms strategy-pattern
Last synced: 10 months ago
JSON representation
kotlin implementation for various sorting algorithms [school project]
- Host: GitHub
- URL: https://github.com/mhashim6/kotlin-sorting-algorithms
- Owner: mhashim6
- License: gpl-3.0
- Created: 2018-10-09T15:04:58.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-21T03:58:55.000Z (over 7 years ago)
- Last Synced: 2025-03-05T05:30:28.624Z (about 1 year ago)
- Topics: bubble-sort, factory-pattern, functional-programming, insertion-sort, kotlin, kotlin-sorting-algorithms, merge-sort, oop, school-project, sorting-algorithms, strategy-pattern
- Language: Kotlin
- Homepage:
- Size: 83 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kotlin-Sorting-Algorithms
> kotlin implementation for various sorting algorithms, for a school
> assignment.
> Tests are included for both OOP and Functional implementations.
---
Currently implemented algorithms :
- Insertion sort
- Bubble sort
- Merge sort
---
Implementation styles:
- OOP
- Functional Programming
---
OOP Design Patterns:
- Strategy pattern
- Factory Pattern