Getting Started With Rust: Common Algos (Part 1)
It has been some time since I wrote my last blog post. I am glad to be writing again. This post is about the Rust programming language. Recently, I started learning Rust. I wanted to document examples of common algorithms in C++ and show how they can be written in Rust. Plan In this post (Part 1), I focus on the first five common programs we typically implement in C++. My goal is to write the code myself without using LLM-generated implementations. I may still use web search to refer to Rust documentation and other learning resources. ...