forked from rust-lang/rustlings
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request rust-lang#409 from AlexandruGG/feature/box-exercise
- Loading branch information
Showing
4 changed files
with
74 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ target/ | |
*.pdb | ||
exercises/clippy/Cargo.toml | ||
exercises/clippy/Cargo.lock | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
// box1.rs | ||
// | ||
// At compile time, Rust needs to know how much space a type takes up. This becomes problematic | ||
// for recursive types, where a value can have as part of itself another value of the same type. | ||
// To get around the issue, we can use a `Box` - a smart pointer used to store data on the heap, | ||
// which also allows us to wrap a recursive type. | ||
// | ||
// The recursive type we're implementing in this exercise is the `cons list` - a data structure | ||
// frequently found in functional programming languages. Each item in a cons list contains two | ||
// elements: the value of the current item and the next item. The last item is a value called `Nil`. | ||
// | ||
// Step 1: use a `Box` in the enum definition to make the code compile | ||
// Step 2: create both empty and non-empty cons lists of by replacing `unimplemented!()` | ||
// | ||
// Note: the tests should not be changed | ||
// | ||
// Execute `rustlings hint box1` for hints :) | ||
|
||
// I AM NOT DONE | ||
|
||
#[derive(PartialEq, Debug)] | ||
pub enum List { | ||
Cons(i32, List), | ||
Nil, | ||
} | ||
|
||
fn main() { | ||
println!("This is an empty cons list: {:?}", create_empty_list()); | ||
println!("This is a non-empty cons list: {:?}", create_non_empty_list()); | ||
} | ||
|
||
pub fn create_empty_list() -> List { | ||
unimplemented!() | ||
} | ||
|
||
pub fn create_non_empty_list() -> List { | ||
unimplemented!() | ||
} | ||
|
||
#[cfg(test)] | ||
mod tests { | ||
use super::*; | ||
|
||
#[test] | ||
fn test_create_empty_list() { | ||
assert_eq!(List::Nil, create_empty_list()) | ||
} | ||
|
||
#[test] | ||
fn test_create_non_empty_list() { | ||
assert_ne!(create_empty_list(), create_non_empty_list()) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters