search_package_one 1.0.1
search_package_one: ^1.0.1 copied to clipboard
This package provides implementations of common search algorithms including Linear Search, Binary Search, and Jump Search. Each search function returns the index of the target element if found, otherw [...]
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add search_package_oneThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
search_package_one: ^1.0.1Alternatively, your editor might support dart pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:search_package_one/search_package_one.dart';