mirror of
https://github.com/krahets/hello-algo.git
synced 2026-02-03 19:03:42 +08:00
* Review the EN heading format. * Fix pythontutor headings. * Fix pythontutor headings. * bug fixes * Fix headings in **/summary.md * Revisit the CN-to-EN translation for Python code using Claude-4.5 * Revisit the CN-to-EN translation for Java code using Claude-4.5 * Revisit the CN-to-EN translation for Cpp code using Claude-4.5. * Fix the dictionary. * Fix cpp code translation for the multipart strings. * Translate Go code to English. * Update workflows to test EN code. * Add EN translation for C. * Add EN translation for CSharp. * Add EN translation for Swift. * Trigger the CI check. * Revert. * Update en/hash_map.md * Add the EN version of Dart code. * Add the EN version of Kotlin code. * Add missing code files. * Add the EN version of JavaScript code. * Add the EN version of TypeScript code. * Fix the workflows. * Add the EN version of Ruby code. * Add the EN version of Rust code. * Update the CI check for the English version code. * Update Python CI check. * Fix cmakelists for en/C code. * Fix Ruby comments
49 lines
1.3 KiB
Rust
49 lines
1.3 KiB
Rust
/*
|
|
* File: hash_map.rs
|
|
* Created Time: 2023-02-05
|
|
* Author: codingonion (coderonion@gmail.com)
|
|
*/
|
|
|
|
use hello_algo_rust::include::print_util;
|
|
|
|
use std::collections::HashMap;
|
|
|
|
/* Driver Code */
|
|
pub fn main() {
|
|
// Initialize hash table
|
|
let mut map = HashMap::new();
|
|
|
|
// Add operation
|
|
// Add key-value pair (key, value) to the hash table
|
|
map.insert(12836, "Xiao Ha");
|
|
map.insert(15937, "Xiao Luo");
|
|
map.insert(16750, "Xiao Suan");
|
|
map.insert(13276, "Xiao Fa");
|
|
map.insert(10583, "Xiao Ya");
|
|
println!("\nAfter adding is complete, hash table is\nKey -> Value");
|
|
print_util::print_hash_map(&map);
|
|
|
|
// Query operation
|
|
// Input key into hash table to get value
|
|
let name = map.get(&15937).copied().unwrap();
|
|
println!("\nInput student ID 15937, found name {name}");
|
|
|
|
// Remove operation
|
|
// Remove key-value pair (key, value) from hash table
|
|
_ = map.remove(&10583);
|
|
println!("\nAfter removing 10583, hash table is\nKey -> Value");
|
|
print_util::print_hash_map(&map);
|
|
|
|
// Traverse hash table
|
|
println!("\nTraverse key-value pairs Key->Value");
|
|
print_util::print_hash_map(&map);
|
|
println!("\nTraverse keys only Key");
|
|
for key in map.keys() {
|
|
println!("{key}");
|
|
}
|
|
println!("\nTraverse values separately");
|
|
for value in map.values() {
|
|
println!("{value}");
|
|
}
|
|
}
|