24 stable releases
new 3.0.4 | Dec 12, 2024 |
---|---|
3.0.3 | Dec 8, 2024 |
2.0.4 | Nov 28, 2024 |
1.0.13 | Nov 13, 2024 |
1.0.7 | Oct 31, 2024 |
#291 in Algorithms
1,654 downloads per month
34KB
677 lines
treerder
- retrieval tree orderer / ordering based on
char
s sequence representation - orders any type implementing
Orderable
trait - implementation for
&str
andString
oob - English alphabet A–Za–z oob
- customizable alphabet
asymptotic computational complexity
- tc | Ο(s) where s is sum of all
char
s iterated over - sc | Θ(q) where q is number of unique nodes, i.e.
char
s in respective branches
basic usage
let mut test = [
String::from("zzz"),
String::from("ZZZ"),
String::from("aaa"),
String::from("AAA"),
];
let mut proof = test.clone();
proof.sort();
let mut orderer = Treerder::new();
orderer.order(&mut test);
assert_eq!(proof, test);
Orderable
implementation with custom alphabet
use treerder::{Orderable, Treerder};
#[derive(Debug, PartialEq)]
struct LocalUsize(usize);
struct LocalUsizeCharIterator {
s: String,
c: usize,
}
impl Iterator for LocalUsizeCharIterator {
type Item = char;
fn next(&mut self) -> Option<char> {
let c = self.c;
let opt = self.s.chars().nth(c);
if opt.is_some() {
self.c = c + 1;
}
opt
}
}
impl Orderable for LocalUsize {
type Shadow = usize;
fn chars(&self) -> impl Iterator<Item = char> {
LocalUsizeCharIterator {
s: self.0.to_string(),
c: 0,
}
}
fn shadow(&self) -> Self::Shadow {
self.0
}
fn steady(s: Self::Shadow) -> Self {
LocalUsize(s)
}
}
fn ix(c: char) -> usize {
c.to_digit(10).unwrap() as usize
}
let mut nums = [999, 333, 33, 3, 0, 100, 10, 1].map(|x| LocalUsize(x));
let mut orderer = Treerder::<LocalUsize>::new_with(ix, 10);
orderer.order(&mut nums);
let proof = [0, 1, 10, 100, 3, 33, 333, 999].map(|x| LocalUsize(x));
assert_eq!(proof, nums);