From 9afbc9eda5bb2cdff36da7711209e3da9b59788f Mon Sep 17 00:00:00 2001 From: CarrotDLaw Date: Wed, 15 May 2024 18:31:48 +0800 Subject: [PATCH] [Rust] Use arrays instead of vectors in Chapter 4.1 Array (#1357) * [Rust] Use array in chapter 4.1 * docs: update comments * docs: update comments * docs: update comments * fix: update slices * docs: update comments --- .../rust/chapter_array_and_linkedlist/array.rs | 18 ++++++++++-------- docs/chapter_array_and_linkedlist/array.md | 7 ++++++- en/docs/chapter_array_and_linkedlist/array.md | 7 ++++++- .../rust/chapter_array_and_linkedlist/array.rs | 18 ++++++++++-------- .../docs/chapter_array_and_linkedlist/array.md | 7 ++++++- 5 files changed, 38 insertions(+), 19 deletions(-) diff --git a/codes/rust/chapter_array_and_linkedlist/array.rs b/codes/rust/chapter_array_and_linkedlist/array.rs index 30887fe80..c529105a3 100644 --- a/codes/rust/chapter_array_and_linkedlist/array.rs +++ b/codes/rust/chapter_array_and_linkedlist/array.rs @@ -18,7 +18,7 @@ fn random_access(nums: &[i32]) -> i32 { } /* 扩展数组长度 */ -fn extend(nums: Vec, enlarge: usize) -> Vec { +fn extend(nums: &[i32], enlarge: usize) -> Vec { // 初始化一个扩展长度后的数组 let mut res: Vec = vec![0; nums.len() + enlarge]; // 将原数组中的所有元素复制到新 @@ -30,7 +30,7 @@ fn extend(nums: Vec, enlarge: usize) -> Vec { } /* 在数组的索引 index 处插入元素 num */ -fn insert(nums: &mut Vec, num: i32, index: usize) { +fn insert(nums: &mut [i32], num: i32, index: usize) { // 把索引 index 以及之后的所有元素向后移动一位 for i in (index + 1..nums.len()).rev() { nums[i] = nums[i - 1]; @@ -40,7 +40,7 @@ fn insert(nums: &mut Vec, num: i32, index: usize) { } /* 删除索引 index 处的元素 */ -fn remove(nums: &mut Vec, index: usize) { +fn remove(nums: &mut [i32], index: usize) { // 把索引 index 之后的所有元素向前移动一位 for i in index..nums.len() - 1 { nums[i] = nums[i + 1]; @@ -73,13 +73,15 @@ fn find(nums: &[i32], target: i32) -> Option { /* Driver Code */ fn main() { /* 初始化数组 */ - let arr = [0; 5]; + let arr: [i32; 5] = [0; 5]; + let slice: &[i32] = &[0; 5]; print!("数组 arr = "); print_util::print_array(&arr); - // 在 Rust 中,指定长度时([i32; 5])为数组 + // 在 Rust 中,指定长度时([i32; 5])为数组,不指定长度时(&[i32])为切片 // 由于 Rust 的数组被设计为在编译期确定长度,因此只能使用常量来指定长度 - // 为了方便实现扩容 extend() 方法,以下将(Vec) 看作数组(Array)也是rust一般情况下使用动态数组的类型 - let nums = vec![1, 3, 2, 5, 4]; + // Vector 是 Rust 一般情况下用作动态数组的类型 + // 为了方便实现扩容 extend() 方法,以下将 vector 看作数组(array) + let nums: Vec = vec![1, 3, 2, 5, 4]; print!("\n数组 nums = "); print_util::print_array(&nums); @@ -88,7 +90,7 @@ fn main() { println!("\n在 nums 中获取随机元素 {}", random_num); // 长度扩展 - let mut nums = extend(nums, 3); + let mut nums: Vec = extend(&nums, 3); print!("将数组长度扩展至 8 ,得到 nums = "); print_util::print_array(&nums); diff --git a/docs/chapter_array_and_linkedlist/array.md b/docs/chapter_array_and_linkedlist/array.md index a9fddfb6d..98452f0b7 100755 --- a/docs/chapter_array_and_linkedlist/array.md +++ b/docs/chapter_array_and_linkedlist/array.md @@ -93,7 +93,12 @@ ```rust title="array.rs" /* 初始化数组 */ - let arr: Vec = vec![0; 5]; // [0, 0, 0, 0, 0] + let arr: [i32; 5] = [0; 5]; // [0, 0, 0, 0, 0] + let slice: &[i32] = &[0; 5]; + // 在 Rust 中,指定长度时([i32; 5])为数组,不指定长度时(&[i32])为切片 + // 由于 Rust 的数组被设计为在编译期确定长度,因此只能使用常量来指定长度 + // Vector 是 Rust 一般情况下用作动态数组的类型 + // 为了方便实现扩容 extend() 方法,以下将 vector 看作数组(array) let nums: Vec = vec![1, 3, 2, 5, 4]; ``` diff --git a/en/docs/chapter_array_and_linkedlist/array.md b/en/docs/chapter_array_and_linkedlist/array.md index 4aaefa862..639f83018 100755 --- a/en/docs/chapter_array_and_linkedlist/array.md +++ b/en/docs/chapter_array_and_linkedlist/array.md @@ -93,7 +93,12 @@ Arrays can be initialized in two ways depending on the needs: either without ini ```rust title="array.rs" /* Initialize array */ - let arr: Vec = vec![0; 5]; // [0, 0, 0, 0, 0] + let arr: [i32; 5] = [0; 5]; // [0, 0, 0, 0, 0] + let slice: &[i32] = &[0; 5]; + // In Rust, specifying the length ([i32; 5]) denotes an array, while not specifying it (&[i32]) denotes a slice. + // Since Rust's arrays are designed to have compile-time fixed length, only constants can be used to specify the length. + // Vectors are generally used as dynamic arrays in Rust. + // For convenience in implementing the extend() method, the vector will be considered as an array here. let nums: Vec = vec![1, 3, 2, 5, 4]; ``` diff --git a/zh-hant/codes/rust/chapter_array_and_linkedlist/array.rs b/zh-hant/codes/rust/chapter_array_and_linkedlist/array.rs index 649e3dedf..519bc711b 100644 --- a/zh-hant/codes/rust/chapter_array_and_linkedlist/array.rs +++ b/zh-hant/codes/rust/chapter_array_and_linkedlist/array.rs @@ -18,7 +18,7 @@ fn random_access(nums: &[i32]) -> i32 { } /* 擴展陣列長度 */ -fn extend(nums: Vec, enlarge: usize) -> Vec { +fn extend(nums: &[i32], enlarge: usize) -> Vec { // 初始化一個擴展長度後的陣列 let mut res: Vec = vec![0; nums.len() + enlarge]; // 將原陣列中的所有元素複製到新 @@ -30,7 +30,7 @@ fn extend(nums: Vec, enlarge: usize) -> Vec { } /* 在陣列的索引 index 處插入元素 num */ -fn insert(nums: &mut Vec, num: i32, index: usize) { +fn insert(nums: &mut [i32], num: i32, index: usize) { // 把索引 index 以及之後的所有元素向後移動一位 for i in (index + 1..nums.len()).rev() { nums[i] = nums[i - 1]; @@ -40,7 +40,7 @@ fn insert(nums: &mut Vec, num: i32, index: usize) { } /* 刪除索引 index 處的元素 */ -fn remove(nums: &mut Vec, index: usize) { +fn remove(nums: &mut [i32], index: usize) { // 把索引 index 之後的所有元素向前移動一位 for i in index..nums.len() - 1 { nums[i] = nums[i + 1]; @@ -73,13 +73,15 @@ fn find(nums: &[i32], target: i32) -> Option { /* Driver Code */ fn main() { /* 初始化陣列 */ - let arr = [0; 5]; + let arr: [i32; 5] = [0; 5]; + let slice: &[i32] = &[0; 5]; print!("陣列 arr = "); print_util::print_array(&arr); - // 在 Rust 中,指定長度時([i32; 5])為陣列 + // 在 Rust 中,指定長度时([i32; 5])爲陣列,不指定長度時(&[i32])爲切片 // 由於 Rust 的陣列被設計為在編譯期確定長度,因此只能使用常數來指定長度 - // 為了方便實現擴容 extend() 方法,以下將(Vec) 看作陣列(Array)也是rust一般情況下使用動態陣列的型別 - let nums = vec![1, 3, 2, 5, 4]; + // Vector 是 Rust 一般情況下用作動態陣列的類型 + // 為了方便實現擴容 extend() 方法,以下將 vector 看作陣列(array) + let nums: Vec = vec![1, 3, 2, 5, 4]; print!("\n陣列 nums = "); print_util::print_array(&nums); @@ -88,7 +90,7 @@ fn main() { println!("\n在 nums 中獲取隨機元素 {}", random_num); // 長度擴展 - let mut nums = extend(nums, 3); + let mut nums: Vec = extend(&nums, 3); print!("將陣列長度擴展至 8 ,得到 nums = "); print_util::print_array(&nums); diff --git a/zh-hant/docs/chapter_array_and_linkedlist/array.md b/zh-hant/docs/chapter_array_and_linkedlist/array.md index f4156b010..c849a642d 100755 --- a/zh-hant/docs/chapter_array_and_linkedlist/array.md +++ b/zh-hant/docs/chapter_array_and_linkedlist/array.md @@ -93,7 +93,12 @@ ```rust title="array.rs" /* 初始化陣列 */ - let arr: Vec = vec![0; 5]; // [0, 0, 0, 0, 0] + let arr: [i32; 5] = [0; 5]; // [0, 0, 0, 0, 0] + let slice: &[i32] = &[0; 5]; + // 在 Rust 中,指定長度时([i32; 5])爲陣列,不指定長度時(&[i32])爲切片 + // 由於 Rust 的陣列被設計為在編譯期確定長度,因此只能使用常數來指定長度 + // Vector 是 Rust 一般情況下用作動態陣列的類型 + // 為了方便實現擴容 extend() 方法,以下將 vector 看作陣列(array) let nums: Vec = vec![1, 3, 2, 5, 4]; ```