Rust icon indicating copy to clipboard operation
Rust copied to clipboard

All Algorithms implemented in Rust

Results 63 Rust issues
Sort by recently updated
recently updated
newest added

Since #3 is already overcrowded and we need to have our roadmap somewhere visible, I figured I should open a new issue. The list is currently my own to-do list,...

enhancement
dont-close

This issue is fairly easy and most beginners should be comfortable implementing algorithms of their choice in Rust. In case of any problem, raise an issue or just discuss it...

enhancement
dont-close

There are a few linting errors and warnings currently, especially in `./src/data_structures` and `./src/graph` Examples: parameter is only used in recursion --at--> src\data_structures\b_tree.rs:104:39 ``` error: parameter is only used in...

## Description - Added the Fast Inverse Square Root Algorithm and tests for it. This is the well known 'Quake' implementation: https://en.wikipedia.org/wiki/Fast_inverse_square_root - Added a file `./src/math/amicable_numbers.rs` which included a...

[Rosetta Code](https://rosettacode.org/wiki/FizzBuzz) is a wiki of common programming problems, algorithms, etc written in different programming languages. Another, smaller, but similar site is [Programming Idioms](https://programming-idioms.org/all-idioms) Rosetta Code is by far the...

I'm not aware what more files I have to edit. Can anyone please tell me?

This Is A Technique To Calculate Square Root, I Write It In Rust, And Yeah, It's Indian Old Way But Work's

https://github.com/TheAlgorithms/Rust/blob/6189823b425df0a172a60d87f3b2e982f3e5dee2/src/data_structures/linked_list.rs#L199 it looks the implementation of drop is flawed and delete head is not returning none to terminate the drop process appropriately.

There are multiple problems in the repo that fall under CSP. Essentially a list of variables and constraints between them. It is not an algorithm but a class of problems...