Rust, Software Development

Ways To Use Stack in Rust

There are several ways to implement or use a stack in Rust. A stack is a data structure that allows us to store data in LIFO (last-in-first-out). Rust has no stack data structure, but it offers data structures with similar behavior – Vec, LinkedList, and VecQueue. The typical operations for stacks are push, peek, and pop. The push operation allows us to add new items to the stack; the peek operation lets us examine the object on top of the stack. Finally, the pop operation enables us to remove an item from the top of the stack.

Our Use-case to Use Stack in Rust

For this post, our use-case is simple – add or remove plates from a stack of plates in Rust. When we add or remove a plate from a pile, we do it on the top, which is evident, especially when there is already at least one plate.

Rust Vec Example

The Rust Vec is a growable array type. We can use it either as a list or a stack in Rust. As a list, we add or remove items randomly by specifying indexes. Consider the following codes.

The codes create an empty using Vec and insert the values 1,2 and 3 in various locations in the list. When we remove an item, we specify the index of the item. The codes generate the following output.

On the other hand, we can use it as a stack to add or remove items from one end of the list, which we usually refer to as the top. Consider the following codes.

These codes output the following.

Rust LinkedList Example

Alternatively, we can use LinkedList in Rust to simulate a stack. If we change the codes from the earlier section, we will get the following codes.

With Rust LinkedList, we can choose which location to process the items – front or back. To use it as a stack, we choose either. But when we use it as a queue (for another post), we use both.

The codes generate the following result.

Use VecQueue As Stack In Rust

Lastly, we have the VecQueue, and we can use it as a stack in Rust with virtually no changes if we are coming from using LinkedList. Take a look at the codes for VecQueue and LinkedList.

Can you spot the difference?

Loading

Got comments or suggestions? We disabled the comments on this site to fight off spammers, but you can still contact us via our Facebook page!.


You Might Also Like