| Crates.io | hash-unionfind |
| lib.rs | hash-unionfind |
| version | 0.1.1 |
| created_at | 2023-06-01 16:06:31.89317+00 |
| updated_at | 2023-06-01 16:11:47.890377+00 |
| description | A Rust implementation of the Union-Find data structure |
| homepage | https://github.com/eytans/rs-unionfind |
| repository | https://github.com/eytans/rs-unionfind |
| max_upload_size | |
| id | 879859 |
| size | 6,863 |
A very simple implementation of unionfind in rust. Uses indexmap as the backbone to support any data structure. To have a nice API it uses RefCell, so find is still efficient, but not concurrent.