1์ผ์ฐจ ์ค์ ์ฐ์ต๋ฌธ์
๋ฐฐ์ด๊ณผ for
๋ฐ๋ณต๋ฌธ
fn transpose(matrix: [[i32; 3]; 3]) -> [[i32; 3]; 3] { let mut result = [[0; 3]; 3]; for i in 0..3 { for j in 0..3 { result[j][i] = matrix[i][j]; } } return result; } fn pretty_print(matrix: &[[i32; 3]; 3]) { for row in matrix { println!("{row:?}"); } } #[test] fn test_transpose() { let matrix = [ [101, 102, 103], // [201, 202, 203], [301, 302, 303], ]; let transposed = transpose(matrix); assert_eq!( transposed, [ [101, 201, 301], // [102, 202, 302], [103, 203, 303], ] ); } fn main() { let matrix = [ [101, 102, 103], // <-- the comment makes rustfmt add a newline [201, 202, 203], [301, 302, 303], ]; println!("matrix:"); pretty_print(&matrix); let transposed = transpose(matrix); println!("transposed:"); pretty_print(&transposed); }
๋ณด๋์ค ๋ฌธ์
์ฌ์ค ์ด ๋ฌธ์ ๋ ๊ณ ๊ธ ๊ฐ๋
์ด ํ์ํฉ๋๋ค. ์ฌ๋ผ์ด์ค์ ์ฌ๋ผ์ด์ค(slice-of-slices, &[&[i32]]
)๋ฅผ ์
๋ ฅ ํ์
์ผ๋ก ์ฌ์ฉํ๋ฉด ๋ชจ๋ ํฌ๊ธฐ์ ํ๋ ฌ์ ์ฒ๋ฆฌํ ์ ์์๊ฒ ๊ฐ์ต๋๋ค. ํ์ง๋ง ์ค์ ๋ก ํด๋ณด๋ฉด ๊ธ๋ฐฉ ์๋๋ค๋ ๊ฑธ ์ ์ ์์ต๋๋ค. ๋ฐํ๊ฐ์ ์์ ํด์ผ ํ๊ธฐ๋๋ฌธ์ &[&[i32]]
๋ฐํ ํ์
์ผ๋ก ์ฌ์ฉํ ์ ์์ต๋๋ค.
Vec<Vec<i32>>
์ ๊ฐ์ ํ์
์ ์ฌ์ฉํ๋ ค๊ณ ์๋ํ ์๋ ์์ง๋ง ์ญ์ ์ฝ๊ฒ ๋์ง ์์ต๋๋ค. Vec<Vec<i32>>
ํ์
์ &[&[i32]]
๋ก ๋ณํํ๋ ๊ฒ์ด ์ด๋ ต๊ธฐ ๋๋ฌธ์ pretty_print
์ ์ฌ์ฉํ๋๋ฐ ์ด๋ ค์์ด ์์ต๋๋ค.
ํธ๋ ์๋ ์ ๋ค๋ฆญ์ ๋ค๋ฃจ๊ณ ๋๋ฉด std::convert::AsRef
ํธ๋ ์์ ์ฌ์ฉํ์ฌ ์ฌ๋ผ์ด์ค์ฒ๋ผ ์ฌ์ฉ๋ ์ ์๋ ํ์
์ ์ถ์ํํ ์ ์์ต๋๋ค.
use std::convert::AsRef; use std::fmt::Debug; fn pretty_print<T, Line, Matrix>(matrix: Matrix) where T: Debug, // A line references a slice of items Line: AsRef<[T]>, // A matrix references a slice of lines Matrix: AsRef<[Line]> { for row in matrix.as_ref() { println!("{:?}", row.as_ref()); } } fn main() { // &[&[i32]] pretty_print(&[&[1, 2, 3], &[4, 5, 6], &[7, 8, 9]]); // [[&str; 2]; 2] pretty_print([["a", "b"], ["c", "d"]]); // Vec<Vec<i32>> pretty_print(vec![vec![1, 2], vec![3, 4]]); }
๋ํ, ์ฌ๋ผ์ด์ค ํ์ ์ ๊ธธ์ด๋ฅผ ํฌํจํ์ง ์๊ธฐ ๋๋ฌธ์ ํ ๋จ๊ณ ์๋์ ์ฌ๋ผ์ด์ค๋ค์ด ๊ฐ์ ๊ธธ์ด์์ ๋ณด์ฅํ ์ ์์ต๋๋ค. ๋๋ฌธ์ ์ฌ๋ผ์ด์ค ํ์ ์ ๋ณ์์๋ ์๋ชป๋ ํ๋ ฌ์ด ์ ๋ฌ๋ ์ ์์ต๋๋ค.