rust/src/libstd/fun_treemap.rs

78 lines
2.2 KiB
Rust
Raw Normal View History

// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
/*!
* A functional key,value store that works on anything.
*
* This works using a binary search tree. In the first version, it's a
* very naive algorithm, but it will probably be updated to be a
* red-black tree or something else.
*
* This is copied and modified from treemap right now. It's missing a lot
* of features.
*/
2012-09-04 13:23:53 -05:00
use core::cmp::{Eq, Ord};
use core::option::{Some, None};
pub type Treemap<K, V> = @TreeNode<K, V>;
2012-08-11 09:08:42 -05:00
enum TreeNode<K, V> {
Empty,
Node(@K, @V, @TreeNode<K, V>, @TreeNode<K, V>)
}
/// Create a treemap
pub fn init<K, V>() -> Treemap<K, V> { @Empty }
/// Insert a value into the map
pub fn insert<K:Copy + Eq + Ord,V:Copy>(m: Treemap<K, V>, k: K, v: V)
2012-08-31 17:54:01 -05:00
-> Treemap<K, V> {
2012-08-06 14:34:08 -05:00
@match m {
2012-08-11 09:08:42 -05:00
@Empty => Node(@k, @v, @Empty, @Empty),
2012-09-28 02:22:18 -05:00
@Node(@copy kk, vv, left, right) => {
2011-09-02 17:34:58 -05:00
if k < kk {
2012-08-11 09:08:42 -05:00
Node(@kk, vv, insert(left, k, v), right)
2011-09-02 17:34:58 -05:00
} else if k == kk {
2012-08-11 09:08:42 -05:00
Node(@kk, @v, left, right)
} else { Node(@kk, vv, left, insert(right, k, v)) }
2011-09-02 17:34:58 -05:00
}
}
}
/// Find a value based on the key
pub fn find<K:Eq + Ord,V:Copy>(m: Treemap<K, V>, k: K) -> Option<V> {
2012-08-06 14:34:08 -05:00
match *m {
2012-08-11 09:08:42 -05:00
Empty => None,
2012-09-28 02:22:18 -05:00
Node(@ref kk, @copy v, left, right) => {
if k == *kk {
2012-08-20 14:23:37 -05:00
Some(v)
2013-02-15 01:30:30 -06:00
} else if k < *kk { find(left, k) } else { find(right, k) }
2011-09-02 17:34:58 -05:00
}
}
}
/// Visit all pairs in the map in order.
pub fn traverse<K, V: Copy>(m: Treemap<K, V>, f: &fn(&K, &V)) {
2012-08-06 14:34:08 -05:00
match *m {
2012-08-11 09:08:42 -05:00
Empty => (),
/*
Previously, this had what looked like redundant
matches to me, so I changed it. but that may be a
de-optimization -- tjc
*/
2012-09-28 02:22:18 -05:00
Node(@ref k, @ref v, left, right) => {
traverse(left, f);
2012-09-28 02:22:18 -05:00
f(k, v);
traverse(right, f);
}
}
}