Data Structure Library
A Rust library implementing common data structures and algorithms.
Features
- Linear data structures:
- Array List
- Linked List
- Stack
- String (with BF pattern matching)
- Graph (Adjacency Matrix)
- Sorting algorithms:
- Quick sort
Usage
Add to your Cargo.toml
:
[]
= "0.1.7"
Example usage:
use String;
use AMGraph;
Documentation
Run cargo doc --open
to view full documentation.