mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-26 13:36:29 +08:00
fcbaf101a4
* Update Dockerfile for code debugging. * Format Python code using Black. * Improve dark theme by defining html classes for the figures, animations and cover images. * Fix several glossary translation. * Update a code comment. * Fix climbing_stairs_backtrack: the pruning should not require the sorted choices list. * Update the code of array and list traversal. * Fix a rendering issue of README.md * Update code of list traversal. * Fix array_definition.png * Update README.md * Fix max_capacity_moving_short_board.png * Fix array.dart * Fix array.dart * Fix array.dart * Fix array.dart
71 lines
1.8 KiB
Rust
71 lines
1.8 KiB
Rust
/*
|
||
* File: list.rs
|
||
* Created Time: 2023-01-18
|
||
* Author: xBLACICEx (xBLACKICEx@outlook.com), sjinzh (sjinzh@gmail.com)
|
||
*/
|
||
|
||
include!("../include/include.rs");
|
||
|
||
/* Driver Code */
|
||
fn main() {
|
||
// 初始化列表
|
||
let mut nums: Vec<i32> = vec![ 1, 3, 2, 5, 4 ];
|
||
print!("列表 nums = ");
|
||
print_util::print_array(&nums);
|
||
|
||
// 访问元素
|
||
let num = nums[1];
|
||
println!("\n访问索引 1 处的元素,得到 num = {num}");
|
||
|
||
// 更新元素
|
||
nums[1] = 0;
|
||
print!("将索引 1 处的元素更新为 0 ,得到 nums = ");
|
||
print_util::print_array(&nums);
|
||
|
||
// 清空列表
|
||
nums.clear();
|
||
print!("\n清空列表后 nums = ");
|
||
print_util::print_array(&nums);
|
||
|
||
// 尾部添加元素
|
||
nums.push(1);
|
||
nums.push(3);
|
||
nums.push(2);
|
||
nums.push(5);
|
||
nums.push(4);
|
||
print!("\n添加元素后 nums = ");
|
||
print_util::print_array(&nums);
|
||
|
||
// 中间插入元素
|
||
nums.insert(3, 6);
|
||
print!("\n在索引 3 处插入数字 6 ,得到 nums = ");
|
||
print_util::print_array(&nums);
|
||
|
||
// 删除元素
|
||
nums.remove(3);
|
||
print!("\n删除索引 3 处的元素,得到 nums = ");
|
||
print_util::print_array(&nums);
|
||
|
||
// 通过索引遍历列表
|
||
let mut _count = 0;
|
||
for i in 0..nums.len() {
|
||
_count += nums[i];
|
||
}
|
||
// 直接遍历列表元素
|
||
_count = 0;
|
||
for x in &nums {
|
||
_count += x;
|
||
}
|
||
|
||
// 拼接两个列表
|
||
let mut nums1 = vec![ 6, 8, 7, 10, 9 ];
|
||
nums.append(&mut nums1); // append(移动) 之后 nums1 为空!
|
||
// nums.extend(&nums1); // extend(借用) nums1 能继续使用
|
||
print!("\n将列表 nums1 拼接到 nums 之后,得到 nums = ");
|
||
print_util::print_array(&nums);
|
||
|
||
// 排序列表
|
||
nums.sort();
|
||
print!("\n排序列表后 nums = ");
|
||
print_util::print_array(&nums);
|
||
}
|