Book Image

Hands-On Data Structures and Algorithms in Rust [Video]

By : Matthew Stoodley
3.5 (2)
Book Image

Hands-On Data Structures and Algorithms in Rust [Video]

3.5 (2)
By: Matthew Stoodley

Overview of this book

Rust is a modern systems programming language designed with safety to simplify the development of large, complex software projects. Data structure and Algorithms are key to help in the collection and organization of the data for performing operations on the data and set instructions/logic to accomplish tasks in these projects. This course will be your guide for implementing classic data structures and algorithms in Rust, helping you to get up and running as a confident Rust programmer. You will begin with a primer to Rust and its syntax. You will then explore the language of Time and Memory complexity by comparing different sorting methods. You’ll then learn about Lists and Binary Trees, implement them, and compare them, to show the advantages and use cases of each. Next, you will cover different algorithms in-depth such as sorting, graph, dynamic programming, greedy, divide and conquer, and more. You will learn how counterintuitive techniques can actually make it easier to build scalable projects! By the end of the course, you will have a sound knowledge of the key data structures and algorithms in Rust to confidently implement them in your applications. The Github link to this video course is: https://github.com/PacktPublishing/Hands-On-Data-Structures-and-Algorithms-in-Rust
Table of Contents (7 chapters)
Chapter 3
Building Linked Lists and Binary Trees
Content Locked
Section 4
Converting Binary Tree to a Binary Balance Tree
What if we add data in a sorted manner, doesn't that create just a linked list?