Struct splay_tree::SplayMap

source ·
pub struct SplayMap<K, V> { /* private fields */ }
Expand description

A map based on a splay tree.

A splay tree based map is a self-adjusting data structure. It performs insertion, removal and look-up in O(log n) amortized time.

It is a logic error for a key to be modified in such a way that the key’s ordering relative to any other key, as determined by the Ord trait, changes while it is in the map. This is normally only possible through Cell, RefCell, global state, I/O, or unsafe code.

Examples

use splay_tree::SplayMap;

let mut map = SplayMap::new();

map.insert("foo", 1);
map.insert("bar", 2);
map.insert("baz", 3);

assert_eq!(map.get("foo"), Some(&1));
assert_eq!(map.remove("foo"), Some(1));
assert_eq!(map.get("foo"), None);

for (k, v) in &map {
    println!("{}: {}", k, v);
}

SplayMap implements an Entry API which allows for more complex methods of getting, setting, updating and removing keys and their values:

use splay_tree::SplayMap;

let mut count = SplayMap::new();
for _ in 0..1000 {
    let k = rand::random::<u8>();
    *count.entry(k).or_insert(0) += 1;
}
for k in 0..=255 {
    println!("{}: {}", k, count.get(&k).unwrap_or(&0));
}

Implementations§

Makes a new empty SplayMap.

Examples
use splay_tree::SplayMap;

let mut map = SplayMap::new();
map.insert("foo", 1);
assert_eq!(map.len(), 1);

Clears the map, removing all values.

Examples
use splay_tree::SplayMap;

let mut map = SplayMap::new();
map.insert("foo", 1);
map.clear();
assert!(map.is_empty());

Returns true if the map contains a value for the specified key.

The key may be any borrowed form of the map’s key type, but the ordering on the borrowed form must match the ordering on the key type.

Notice

Because SplayMap is a self-adjusting amortized data structure, this function requires the mut qualifier for self.

Examples
use splay_tree::SplayMap;

let mut map = SplayMap::new();
map.insert("foo", 1);
assert!(map.contains_key("foo"));
assert!(!map.contains_key("bar"));

Immutable version of SplayMap::contains_key().

Note that this method could be less efficient than the mutable version.

Examples
use splay_tree::SplayMap;

let mut map = SplayMap::new();
map.insert("foo", 1);
assert!(map.contains_key_immut("foo"));
assert!(!map.contains_key_immut("bar"));

Returns a reference to the value corresponding to the key.

The key may be any borrowed form of the map’s key type, but the ordering on the borrowed form must match the ordering on the key type.

Notice

Because SplayMap is a self-adjusting amortized data structure, this function requires the mut qualifier for self.

Examples
use splay_tree::SplayMap;

let mut map = SplayMap::new();
map.insert("foo", 1);
assert_eq!(map.get("foo"), Some(&1));
assert_eq!(map.get("bar"), None);

Immutable version of SplayMap::get().

Note that this method could be less efficient than the mutable version.

Examples
use splay_tree::SplayMap;

let mut map = SplayMap::new();
map.insert("foo", 1);
assert_eq!(map.get_immut("foo"), Some(&1));
assert_eq!(map.get_immut("bar"), None);

Returns a mutable reference to the value corresponding to the key.

The key may be any borrowed form of the map’s key type, but the ordering on the borrowed form must match the ordering on the key type.

Examples
use splay_tree::SplayMap;

let mut map = SplayMap::new();
map.insert("foo", 1);
map.get_mut("foo").map(|v| *v = 2);
assert_eq!(map.get("foo"), Some(&2));

Finds a minimum key which satisfies “greater than or equal to key” condition in the map.

Examples
use splay_tree::SplayMap;

let mut map = SplayMap::new();
map.insert(1, ());
map.insert(3, ());

assert_eq!(map.find_lower_bound_key(&0), Some(&1));
assert_eq!(map.find_lower_bound_key(&1), Some(&1));
assert_eq!(map.find_lower_bound_key(&4), None);

Immutable version of SplayMap::find_lower_bound_key().

Note that this method could be less efficient than the mutable version.

Examples
use splay_tree::SplayMap;

let mut map = SplayMap::new();
map.insert(1, ());
map.insert(3, ());

assert_eq!(map.find_lower_bound_key_immut(&0), Some(&1));
assert_eq!(map.find_lower_bound_key_immut(&1), Some(&1));
assert_eq!(map.find_lower_bound_key_immut(&4), None);

Finds a minimum key which satisfies “greater than key” condition in the map.

Examples
use splay_tree::SplayMap;

let mut map = SplayMap::new();
map.insert(1, ());
map.insert(3, ());

assert_eq!(map.find_upper_bound_key(&0), Some(&1));
assert_eq!(map.find_upper_bound_key(&1), Some(&3));
assert_eq!(map.find_upper_bound_key(&4), None);

Immutable version of SplayMap::find_upper_bound_key().

Note that this method could be less efficient than the mutable version.

Examples
use splay_tree::SplayMap;

let mut map = SplayMap::new();
map.insert(1, ());
map.insert(3, ());

assert_eq!(map.find_upper_bound_key_immut(&0), Some(&1));
assert_eq!(map.find_upper_bound_key_immut(&1), Some(&3));
assert_eq!(map.find_upper_bound_key_immut(&4), None);

Gets the entry which have the minimum key in the map.

Examples
use splay_tree::SplayMap;

let mut map = SplayMap::new();
map.insert(1, ());
map.insert(3, ());

assert_eq!(map.smallest(), Some((&1, &())));

Immutable version of SplayMap::smallest().

Note that this method could be less efficient than the mutable version.

Examples
use splay_tree::SplayMap;

let mut map = SplayMap::new();
map.insert(1, ());
map.insert(3, ());

assert_eq!(map.smallest_immut(), Some((&1, &())));

Takes the entry which have the minimum key in the map.

Examples
use splay_tree::SplayMap;

let mut map = SplayMap::new();
map.insert(1, ());
map.insert(3, ());

assert_eq!(map.take_smallest(), Some((1, ())));
assert_eq!(map.take_smallest(), Some((3, ())));
assert_eq!(map.take_smallest(), None);

Gets the entry which have the maximum key in the map.

Examples
use splay_tree::SplayMap;

let mut map = SplayMap::new();
map.insert(1, ());
map.insert(3, ());

assert_eq!(map.largest(), Some((&3, &())));

Immutable version of SplayMap::largest().

Note that this method could be less efficient than the mutable version.

Examples
use splay_tree::SplayMap;

let mut map = SplayMap::new();
map.insert(1, ());
map.insert(3, ());

assert_eq!(map.largest_immut(), Some((&3, &())));

Takes the entry which have the maximum key in the map.

Examples
use splay_tree::SplayMap;

let mut map = SplayMap::new();
map.insert(1, ());
map.insert(3, ());

assert_eq!(map.take_largest(), Some((3, ())));
assert_eq!(map.take_largest(), Some((1, ())));
assert_eq!(map.take_largest(), None);

Inserts a key-value pair into the map.

If the map did not have this key present, None is returned.

If the map did have this key present, the value is updated, and the old value is returned. The key is not updated, though; this matters for types that can be == without being identical.

Examples
use splay_tree::SplayMap;

let mut map = SplayMap::new();
assert_eq!(map.insert("foo", 1), None);
assert_eq!(map.get("foo"), Some(&1));
assert_eq!(map.insert("foo", 2), Some(1));
assert_eq!(map.get("foo"), Some(&2));

Removes a key from the map, returning the value at the key if the key was previously in the map.

The key may be any borrowed form of the map’s key type, but the ordering on the borrowed form must match the ordering on the key type.

Examples
use splay_tree::SplayMap;

let mut map = SplayMap::new();
map.insert("foo", 1);
assert_eq!(map.remove("foo"), Some(1));
assert_eq!(map.remove("foo"), None);

Gets the given key’s corresponding entry in the map for in-place manipulation.

Examples
use splay_tree::SplayMap;

let mut count = SplayMap::new();

// count the number of occurrences of letters in the vec
for x in vec!["a", "b", "a", "c", "a", "b"] {
    *count.entry(x).or_insert(0) += 1;
}

assert_eq!(count.get("a"), Some(&3));

Returns the number of elements in the map.

Examples
use splay_tree::SplayMap;

let mut map = SplayMap::new();
map.insert("foo", 1);
map.insert("bar", 2);
assert_eq!(map.len(), 2);

Returns true if the map contains no elements.

Examples
use splay_tree::SplayMap;

let mut map = SplayMap::new();
assert!(map.is_empty());

map.insert("foo", 1);
assert!(!map.is_empty());

map.clear();
assert!(map.is_empty());

Gets an iterator over the entries of the map, sorted by key.

Examples
use splay_tree::SplayMap;

let map: SplayMap<_, _> =
    vec![("foo", 1), ("bar", 2), ("baz", 3)].into_iter().collect();
assert_eq!(vec![(&"bar", &2), (&"baz", &3), (&"foo", &1)],
           map.iter().collect::<Vec<_>>());

Gets a mutable iterator over the entries of the map, soretd by key.

Examples
use splay_tree::SplayMap;

let mut map: SplayMap<_, _> =
    vec![("foo", 1), ("bar", 2), ("baz", 3)].into_iter().collect();
for (_, v) in map.iter_mut() {
   *v += 10;
}
assert_eq!(map.get("bar"), Some(&12));

Gets an iterator over the keys of the map, in sorted order.

Examples
use splay_tree::SplayMap;

let map: SplayMap<_, _> =
    vec![("foo", 1), ("bar", 2), ("baz", 3)].into_iter().collect();
assert_eq!(vec!["bar", "baz", "foo"],
           map.keys().cloned().collect::<Vec<_>>());

Gets an iterator over the values of the map, in order by key.

Examples
use splay_tree::SplayMap;

let map: SplayMap<_, _> =
    vec![("foo", 1), ("bar", 2), ("baz", 3)].into_iter().collect();
assert_eq!(vec![2, 3, 1],
           map.values().cloned().collect::<Vec<_>>());

Gets a mutable iterator over the values of the map, in order by key.

Examples
use splay_tree::SplayMap;

let mut map: SplayMap<_, _> =
    vec![("foo", 1), ("bar", 2), ("baz", 3)].into_iter().collect();
for v in map.values_mut() {
    *v += 10;
}
assert_eq!(vec![12, 13, 11],
           map.values().cloned().collect::<Vec<_>>());

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
Extends a collection with the contents of an iterator. Read more
🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
Extends a collection with the contents of an iterator. Read more
🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
Creates a value from an iterator. Read more
Feeds this value into the given Hasher. Read more
Feeds a slice of this type into the given Hasher. Read more
The type of the elements being iterated over.
Which kind of iterator are we turning this into?
Creates an iterator from a value. Read more
The type of the elements being iterated over.
Which kind of iterator are we turning this into?
Creates an iterator from a value. Read more
The type of the elements being iterated over.
Which kind of iterator are we turning this into?
Creates an iterator from a value. Read more
This method returns an Ordering between self and other. Read more
Compares and returns the maximum of two values. Read more
Compares and returns the minimum of two values. Read more
Restrict a value to a certain interval. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.