algorithm icon indicating copy to clipboard operation
algorithm copied to clipboard

Algorithms written in Rust

Results 2 algorithm issues
Sort by recently updated
recently updated
newest added
trafficstars

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

Hello, I found a soundness issue in this crate. https://github.com/douchuan/algorithm/blob/a836b53f6b9059d74d0d4b064f8d2e1887e790fb/src/ll/kth2tail.rs#L9-L11 The unsafe function called do_find() needs to meet the corresponding safety requirements of the parameters, and the developer who calls...