algokit 1.0.0
algokit: ^1.0.0 copied to clipboard
A versatile Dart algorithms library providing implementations of various algorithms..
Changelog #
All notable changes to this project will be documented in this file.
1.0.0 #
Added #
Sorting Algorithms:
- Bubble Sort implementation with O(n²) time complexity
- Merge Sort implementation with O(n log n) time complexity
- Quick Sort implementation with O(n log n) average time complexity
Searching Algorithms:
- Binary Search implementation with O(log n) time complexity
- Linear Search implementation with O(n) time complexity
- Jump Search implementation with O(√n) time complexity
Example Files:
- Added example implementations for all sorting algorithms
- Added example implementations for all searching algorithms
Test Cases:
- Comprehensive test coverage for all implemented algorithms