Algorithms Library Toolkit
A toolkit for algorithms, especially for algorithms on formal languages
TrieCompare.h
Go to the documentation of this file.
1
6#pragma once
7
8#include <alib/trie>
10
11namespace compare {
12
14public:
15 template < class R, class T >
16 static bool compare ( const ext::trie < R, T > & a, const ext::trie < R, T > & b ) {
17 return a == b;
18 }
19};
20
21} /* namespace compare */
22
Definition: TrieCompare.h:13
static bool compare(const ext::trie< R, T > &a, const ext::trie< R, T > &b)
Definition: TrieCompare.h:16
Class introducing a trie with interface trying to be close to the interface of standard library conta...
Definition: trie.hpp:47
Definition: AutomatonCompare.h:29