[][src]Crate algos

This crate is a collection of algorithms, mostly intended as learning exercise.

What is implemented:

  • Several sort algorithms
  • Some search algorithms
  • Some pattern algorithms
  • Some numeric sequence algorithms

Features

This crate have a feature called big_num and it is active by default.

In case your needs don't require using big numbers and you want to reduce the crate numbers to be compiled and the compile time, you can disactivate the default features.

Modules

numerics

Module for numeric algorithms ans some iterators

pattern

A module for using pattern matching algorithms.

search

A module for using searching algorithms.

sort

A module for using sorting algorithms.