如何有效地从 HashMap 中查找和插入?
How to lookup from and insert into a HashMap efficiently?
我想做以下事情:
- 查找
Vec
某个键,并保存以备后用。
- 如果不存在,为键创建一个空的
Vec
,但仍将其保留在变量中。
如何有效地做到这一点?自然地,我认为我可以使用 match
:
use std::collections::HashMap;
// This code doesn't compile.
let mut map = HashMap::new();
let key = "foo";
let values: &Vec<isize> = match map.get(key) {
Some(v) => v,
None => {
let default: Vec<isize> = Vec::new();
map.insert(key, default);
&default
}
};
当我尝试时,它给了我这样的错误:
error[E0502]: cannot borrow `map` as mutable because it is also borrowed as immutable
--> src/main.rs:11:13
|
7 | let values: &Vec<isize> = match map.get(key) {
| --- immutable borrow occurs here
...
11 | map.insert(key, default);
| ^^^ mutable borrow occurs here
...
15 | }
| - immutable borrow ends here
我最终做了这样的事情,但我不喜欢它执行两次查找的事实(map.contains_key
和 map.get
):
// This code does compile.
let mut map = HashMap::new();
let key = "foo";
if !map.contains_key(key) {
let default: Vec<isize> = Vec::new();
map.insert(key, default);
}
let values: &Vec<isize> = match map.get(key) {
Some(v) => v,
None => {
panic!("impossiburu!");
}
};
有没有安全的方法只用一个 match
?
entry
API就是为此而设计的。在手动形式下,它可能看起来像
let values = match map.entry(key) {
Entry::Occupied(o) => o.into_mut(),
Entry::Vacant(v) => v.insert(default),
};
可以通过 Entry::or_insert_with
:
使用更简短的形式
let values = map.entry(key).or_insert_with(|| default);
如果 default
已经计算出来,或者如果 OK/cheap 即使没有插入也要计算,你可以使用 Entry::or_insert
:
let values = map.entry(key).or_insert(default);
如果 HashMap
的值实现 Default
,您可以使用 Entry::or_default
,尽管您可能需要提供一些类型提示:
let values = map.entry(key).or_default();
我使用了 并将其实现为特征:
use std::collections::HashMap;
use std::hash::Hash;
pub trait InsertOrGet<K: Eq + Hash, V: Default> {
fn insert_or_get(&mut self, item: K) -> &mut V;
}
impl<K: Eq + Hash, V: Default> InsertOrGet<K, V> for HashMap<K, V> {
fn insert_or_get(&mut self, item: K) -> &mut V {
return match self.entry(item) {
std::collections::hash_map::Entry::Occupied(o) => o.into_mut(),
std::collections::hash_map::Entry::Vacant(v) => v.insert(V::default()),
};
}
}
那我可以这样做:
use crate::utils::hashmap::InsertOrGet;
let new_or_existing_value: &mut ValueType = my_map.insert_or_get(my_key.clone());
我想做以下事情:
- 查找
Vec
某个键,并保存以备后用。 - 如果不存在,为键创建一个空的
Vec
,但仍将其保留在变量中。
如何有效地做到这一点?自然地,我认为我可以使用 match
:
use std::collections::HashMap;
// This code doesn't compile.
let mut map = HashMap::new();
let key = "foo";
let values: &Vec<isize> = match map.get(key) {
Some(v) => v,
None => {
let default: Vec<isize> = Vec::new();
map.insert(key, default);
&default
}
};
当我尝试时,它给了我这样的错误:
error[E0502]: cannot borrow `map` as mutable because it is also borrowed as immutable
--> src/main.rs:11:13
|
7 | let values: &Vec<isize> = match map.get(key) {
| --- immutable borrow occurs here
...
11 | map.insert(key, default);
| ^^^ mutable borrow occurs here
...
15 | }
| - immutable borrow ends here
我最终做了这样的事情,但我不喜欢它执行两次查找的事实(map.contains_key
和 map.get
):
// This code does compile.
let mut map = HashMap::new();
let key = "foo";
if !map.contains_key(key) {
let default: Vec<isize> = Vec::new();
map.insert(key, default);
}
let values: &Vec<isize> = match map.get(key) {
Some(v) => v,
None => {
panic!("impossiburu!");
}
};
有没有安全的方法只用一个 match
?
entry
API就是为此而设计的。在手动形式下,它可能看起来像
let values = match map.entry(key) {
Entry::Occupied(o) => o.into_mut(),
Entry::Vacant(v) => v.insert(default),
};
可以通过 Entry::or_insert_with
:
let values = map.entry(key).or_insert_with(|| default);
如果 default
已经计算出来,或者如果 OK/cheap 即使没有插入也要计算,你可以使用 Entry::or_insert
:
let values = map.entry(key).or_insert(default);
如果 HashMap
的值实现 Default
,您可以使用 Entry::or_default
,尽管您可能需要提供一些类型提示:
let values = map.entry(key).or_default();
我使用了
use std::collections::HashMap;
use std::hash::Hash;
pub trait InsertOrGet<K: Eq + Hash, V: Default> {
fn insert_or_get(&mut self, item: K) -> &mut V;
}
impl<K: Eq + Hash, V: Default> InsertOrGet<K, V> for HashMap<K, V> {
fn insert_or_get(&mut self, item: K) -> &mut V {
return match self.entry(item) {
std::collections::hash_map::Entry::Occupied(o) => o.into_mut(),
std::collections::hash_map::Entry::Vacant(v) => v.insert(V::default()),
};
}
}
那我可以这样做:
use crate::utils::hashmap::InsertOrGet;
let new_or_existing_value: &mut ValueType = my_map.insert_or_get(my_key.clone());