Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/c1m50c/rust-data-structures
- Owner: c1m50c
- License: mit
- Created: 2021-10-29T23:11:08.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-14T23:30:38.000Z (about 3 years ago)
- Last Synced: 2024-11-18T16:57:49.377Z (3 months ago)
- Topics: data-structures, doubly-linked-list, educational, examples, learning, library, linked-list, mit-license, rust, vector
- Language: Rust
- Homepage:
- Size: 82 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
- License: LICENSE
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.
```