mirror of
https://github.com/krahets/hello-algo.git
synced 2026-04-13 10:09:54 +08:00
Refine some details and coding style for Rust codes (#344)
* Refine some details and coding style for Rust codes * Update coding style for Rust codes * Update time_complexity.rs * Update array.rs * Update leetcode_two_sum.rs * Update hash_map.rs * Update file headers * Update coding style for Rust codes and Zig codes * Update coding style for Rust codes and Zig codes --------- Co-authored-by: Yudong Jin <krahets@163.com>
This commit is contained in:
@@ -1,8 +1,10 @@
|
||||
/**
|
||||
/*
|
||||
* File: hash_map.rs
|
||||
* Created Time: 2023-02-05
|
||||
* Author: sjinzh (sjinzh@gmail.com)
|
||||
*/
|
||||
*/
|
||||
|
||||
include!("../include/include.rs");
|
||||
|
||||
use std::collections::HashMap;
|
||||
|
||||
@@ -19,7 +21,7 @@ pub fn main() {
|
||||
map.insert(13276, "小法");
|
||||
map.insert(10583, "小鸭");
|
||||
println!("\n添加完成后,哈希表为\nKey -> Value");
|
||||
inc::print_util::print_hash_map(&map);
|
||||
print_util::print_hash_map(&map);
|
||||
|
||||
// 查询操作
|
||||
// 向哈希表输入键 key ,得到值 value
|
||||
@@ -30,11 +32,11 @@ pub fn main() {
|
||||
// 在哈希表中删除键值对 (key, value)
|
||||
_ = map.remove(&10583);
|
||||
println!("\n删除 10583 后,哈希表为\nKey -> Value");
|
||||
inc::print_util::print_hash_map(&map);
|
||||
print_util::print_hash_map(&map);
|
||||
|
||||
// 遍历哈希表
|
||||
println!("\n遍历键值对 Key->Value");
|
||||
inc::print_util::print_hash_map(&map);
|
||||
print_util::print_hash_map(&map);
|
||||
println!("\n单独遍历键 Key");
|
||||
for key in map.keys() {
|
||||
println!("{key}");
|
||||
@@ -43,4 +45,4 @@ pub fn main() {
|
||||
for value in map.values() {
|
||||
println!("{value}");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user