1
0
Fork 0

Merging upstream version 20.3.0.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-13 21:17:51 +01:00
parent 2945bcc4f7
commit 4d9376ba93
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
132 changed files with 55125 additions and 51576 deletions

68
sqlglotrs/src/trie.rs Normal file
View file

@ -0,0 +1,68 @@
use std::collections::HashMap;
#[derive(Debug)]
pub struct TrieNode {
is_word: bool,
children: HashMap<char, TrieNode>,
}
#[derive(Debug)]
pub enum TrieResult {
Failed,
Prefix,
Exists,
}
impl TrieNode {
pub fn contains(&self, key: &str) -> (TrieResult, &TrieNode) {
if key.is_empty() {
return (TrieResult::Failed, self);
}
let mut current = self;
for c in key.chars() {
match current.children.get(&c) {
Some(node) => current = node,
None => return (TrieResult::Failed, current),
}
}
if current.is_word {
(TrieResult::Exists, current)
} else {
(TrieResult::Prefix, current)
}
}
}
#[derive(Debug)]
pub struct Trie {
pub root: TrieNode,
}
impl Trie {
pub fn new() -> Self {
Trie {
root: TrieNode {
is_word: false,
children: HashMap::new(),
},
}
}
pub fn add<'a, I>(&mut self, keys: I)
where
I: Iterator<Item = &'a String>,
{
for key in keys {
let mut current = &mut self.root;
for c in key.chars() {
current = current.children.entry(c).or_insert(TrieNode {
is_word: false,
children: HashMap::new(),
});
}
current.is_word = true;
}
}
}