1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-05-10 00:26:07 +02:00
rustlings/exercises/05_vecs
Adam Brewer 64d95837e9 Update Exercises Directory Names to Reflect Order 2023-10-16 07:37:12 -04:00
..
README.md Update Exercises Directory Names to Reflect Order 2023-10-16 07:37:12 -04:00
vecs1.rs Update Exercises Directory Names to Reflect Order 2023-10-16 07:37:12 -04:00
vecs2.rs Update Exercises Directory Names to Reflect Order 2023-10-16 07:37:12 -04:00

Vectors

Vectors are one of the most-used Rust data structures. In other programming languages, they'd simply be called Arrays, but since Rust operates on a bit of a lower level, an array in Rust is stored on the stack (meaning it can't grow or shrink, and the size needs to be known at compile time), and a Vector is stored in the heap (where these restrictions do not apply).

Vectors are a bit of a later chapter in the book, but we think that they're useful enough to talk about them a bit earlier. We shall be talking about the other useful data structure, hash maps, later.

Further information