Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Go

Idiom #159 Trie

Define a Trie data structure, where entries have an associated value.
(Not all nodes are entries)

type Trie struct {
	c        rune
	children map[rune]*Trie
	isEntry  bool
	value    V
}

Using type rune, multi-byte characters are correctly handled.
V is the type of the associated values.
struct Trie
{
    Rune c;
    Trie*[Rune] children;
    bool isEntry;
    bool value;
}

New implementation...
< >
programming-idioms.org