rust-algorithm-club icon indicating copy to clipboard operation
rust-algorithm-club copied to clipboard

Learn algorithms and data structures with Rust

Results 6 rust-algorithm-club issues
Sort by recently updated
recently updated
newest added

In this function you use the unsafe keyword for some safe expressions. We need to mark unsafe operations more precisely using unsafe keyword. Keeping unsafe blocks small can bring many...

Here are some linked list implementations and tutorials that need helps. - [ ] [Circular linked list](https://github.com/weihanglo/rust-algorithm-club/tree/master/src/collections/circular_linked_list) - [ ] [Doubly linked list](https://github.com/weihanglo/rust-algorithm-club/tree/master/src/collections/doubly_linked_list) - **WIP at [draft/doubly-linked-list](https://github.com/weihanglo/rust-algorithm-club/tree/draft/doubly-linked-list)** Feel free to...

help wanted

The [generated Rust doc](https://rust-algo.club/doc/rust_algorithm_club/) is public now. Yet it seems too dumb and lack some descriptions. The crate and each modules need to be documented. For crate doc itself, suppose...

enhancement

Here are some associative container variants that needs well-documented implementations and tutorials. - [ ] [Multimap](https://github.com/weihanglo/rust-algorithm-club/tree/master/src/collections/multimap) - [ ] [Ordered Map](https://github.com/weihanglo/rust-algorithm-club/tree/master/src/collections/ordered_map) - [x] [Set](https://github.com/weihanglo/rust-algorithm-club/tree/master/src/collections/set) #15 - [x] [Bloom filter](https://github.com/weihanglo/rust-algorithm-club/tree/master/src/collections/bloom_filter) #34...

help wanted

I am going to implement this one. Which category do you want it to belong with? Reference: https://rcoh.me/posts/linear-time-median-finding/ https://en.wikipedia.org/wiki/Median_of_medians

Here are some efficient sorting algorithms that needs well-documented implementations and tutorials. - [ ] [Timsort](https://github.com/weihanglo/rust-algorithm-club/tree/master/src/sorting/timsort) - **WIP at [draft/timsort](https://github.com/weihanglo/rust-algorithm-club/tree/draft/timsort)** - [ ] [Pdqsort](https://github.com/weihanglo/rust-algorithm-club/tree/master/src/sorting/pdqsort) - [ ] [Introsort](https://github.com/weihanglo/rust-algorithm-club/tree/master/src/sorting/introsort) Feel free...

help wanted