Struct splay_tree::SplayMap [] [src]

pub struct SplayMap<K, V> { /* fields omitted */ }

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:

extern crate rand;
extern crate splay_tree;

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..0x100 {
    println!("{}: {}", k, count.get(&k).unwrap_or(&0));
}

Methods

impl<K, V> SplayMap<K, V> where
    K: Ord
[src]

[src]

Makes a new empty SplayMap.

Examples

use splay_tree::SplayMap;

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

[src]

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());

[src]

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"));

[src]

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);

[src]

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));

[src]

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);

[src]

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);

[src]

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, &())));

[src]

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);

[src]

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, &())));

[src]

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);

[src]

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));

[src]

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);

[src]

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));

impl<K, V> SplayMap<K, V>
[src]

[src]

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);

[src]

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());

Important traits for Iter<'a, K, V>
[src]

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<_>>());

Important traits for IterMut<'a, K, V>
[src]

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));

Important traits for Keys<'a, K, V>
[src]

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<_>>());

Important traits for Values<'a, K, V>
[src]

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<_>>());

Important traits for ValuesMut<'a, K, V>
[src]

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

impl<K: Debug, V: Debug> Debug for SplayMap<K, V>
[src]

[src]

Formats the value using the given formatter. Read more

impl<K: Clone, V: Clone> Clone for SplayMap<K, V>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<K: Hash, V: Hash> Hash for SplayMap<K, V>
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<K: PartialEq, V: PartialEq> PartialEq for SplayMap<K, V>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<K: Eq, V: Eq> Eq for SplayMap<K, V>
[src]

impl<K: PartialOrd, V: PartialOrd> PartialOrd for SplayMap<K, V>
[src]

[src]

This method returns an ordering between self and other values if one exists. Read more

[src]

This method tests less than (for self and other) and is used by the < operator. Read more

[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl<K: Ord, V: Ord> Ord for SplayMap<K, V>
[src]

[src]

This method returns an Ordering between self and other. Read more

1.21.0
[src]

Compares and returns the maximum of two values. Read more

1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl<K, V> Default for SplayMap<K, V> where
    K: Ord
[src]

[src]

Returns the "default value" for a type. Read more

impl<K, V> FromIterator<(K, V)> for SplayMap<K, V> where
    K: Ord
[src]

[src]

Creates a value from an iterator. Read more

impl<'a, K, V> IntoIterator for &'a SplayMap<K, V> where
    K: 'a,
    V: 'a, 
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more

impl<'a, K, V> IntoIterator for &'a mut SplayMap<K, V> where
    K: 'a,
    V: 'a, 
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more

impl<K, V> IntoIterator for SplayMap<K, V>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more

impl<K, V> Extend<(K, V)> for SplayMap<K, V> where
    K: Ord
[src]

[src]

Extends a collection with the contents of an iterator. Read more

impl<'a, K, V> Extend<(&'a K, &'a V)> for SplayMap<K, V> where
    K: 'a + Copy + Ord,
    V: 'a + Copy
[src]

[src]

Extends a collection with the contents of an iterator. Read more

Auto Trait Implementations

impl<K, V> Send for SplayMap<K, V> where
    K: Send,
    V: Send

impl<K, V> Sync for SplayMap<K, V> where
    K: Sync,
    V: Sync