jbl_search 1.0.0
jbl_search: ^1.0.0 copied to clipboard
The unique package for three types of search(linear, binary, jump or box). And you can also see time of searching of each search.
example/jbl_search_example.dart
import 'package:jbl_search/jbl_search.dart';
void main() {
var jblSearch = JblSearch();
jblSearch.search([1,2,3,4,5,6,7,8,9,10], 8);
}