Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/c1m50c/rust-data-structures

A library implementing various Data Structures in Rust, made strictly for learning purposes.
https://github.com/c1m50c/rust-data-structures

data-structures doubly-linked-list educational examples learning library linked-list mit-license rust vector

Last synced: 26 days ago
JSON representation

A library implementing various Data Structures in Rust, made strictly for learning purposes.

Awesome Lists containing this project

README

        

# **rust-data-structures**

[![Build](https://github.com/c1m50c/rust-data-structures/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/c1m50c/rust-data-structures/actions/workflows/build.yml)

Library implementing various Data Structures in Rust, made strictly for learning purposes.

## **Running**
You can test the library by running `cargo test`, an example using it is shown below.
```bash
$ cd rust-data-structures # Change directory to repository's.
$ cargo test # Use Rust's package manager to test the library.
...
test result: ok. # If things go well you should see this at the end.
```