# cpp-fstlib
**Repository Path**: mirrors_yhirose/cpp-fstlib
## Basic Information
- **Project Name**: cpp-fstlib
- **Description**: A single file C++17 header-only Minimal Acyclic Subsequential Transducers, or Finite State Transducers
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-09-26
- **Last Updated**: 2026-09-13
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# cpp-fstlib
[](https://github.com/yhirose/cpp-fstlib/actions)
C++17 header-only FST (finite state transducer) library.
We can use it as [Trie data structure](https://en.wikipedia.org/wiki/Trie).
This library uses the algorithm "[Minimal Acyclic Subsequential Transducers](http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.24.3698&rep=rep1&type=pdf)".
## Play cpp-fstlib with cli
```bash
> git clone http://github/yhirose/cpp-fstlib
> cd cpp-fstlib
> make build && cd build
> cmake .. && make
> ./cmd/fst compile /usr/share/dict/words words.fst
> ./cmd/fst search words.fst hello
83713
> ./cmd/fst prefix words.fst helloworld
h: 81421
he: 82951
hell: 83657
hello: 83713
> ./cmd/fst longest words.fst helloworld
hello: 83713
> ./cmd/fst predictive words.fst predictiv
predictive: 153474
predictively: 153475
predictiveness: 153476
> ./cmd/fst fuzzy words.fst fuzzy -ed 2 // Edit distance 2
Suzy: 195759
buzz: 28064
buzzy: 28076
...
> ./cmd/fst spellcheck words.fst thier
their: 0.946667
thir: 0.762667
tier: 0.752
thief: 0.736
trier: 0.704
```
## API reference
```cpp
namespace fst {
enum class Result { Success, EmptyKey, UnsortedKey, DuplicateKey };
std::pair compile(
const std::vector> &input,
std::ostream &os,
bool sorted
);
std::pair compile(
const std::vector> &input,
std::ostream &os
);
std::pair compile(
const std::vector &key_only_input,
std::ostream &os,
bool need_output, // true: map, false: set
bool sorted
);
template class map {
public:
map(const char *byte_code, size_t byte_code_size);
operator bool() const;
bool contains(std::string_view sv) const;
output_t operator[](std::string_view sv) const;
output_t at(std::string_view sv) const;
bool exact_match_search(std::string_view sv, output_t &output) const;
std::vector>
common_prefix_search(std::string_view sv) const;
size_t longest_common_prefix_search(std::string_view sv, output_t &output) const;
std::vector>
predictive_search(std::string_view sv) const;
std::vector>
edit_distance_search(std::string_view sv, size_t max_edits) const;
std::vector>
suggest(std::string_view word) const;
// T must implement: void step(char), bool is_match() const, bool can_match() const
template
void custom_search(const T &atm,
std::function callback) const;
}
class set {
public:
set(const char *byte_code, size_t byte_code_size);
operator bool() const;
bool contains(std::string_view sv) const;
std::vector common_prefix_search(std::string_view sv) const;
size_t longest_common_prefix_search(std::string_view sv) const;
std::vector predictive_search(std::string_view sv) const;
std::vector
edit_distance_search(std::string_view sv, size_t max_edits) const;
std::vector>
suggest(std::string_view word) const;
// T must implement: void step(char), bool is_match() const, bool can_match() const
template
void custom_search(const T &atm,
std::function callback) const;
}
} // namespace fst
```
## API usage
```cpp
const std::vector> items = {
{"hello", "こんにちは!"},
{"world", "世界!"},
{"hello world", "こんにちは世界!"}, // incorrect sort order entry...
};
std::stringstream out;
auto sorted = false; // ask fst::compile to sort entries
auto [result, error_line] = fst::compile(items, out, sorted);
if (result == fst::Result::Success) {
const auto& byte_code = out.str();
fst::map matcher(byte_code.data(), byte_code.size());
if (matcher) {
assert(matcher.contains("hello world"));
assert(!matcher.contains("Hello World"));
assert(matcher["hello"] == "こんにちは!");
auto prefixes = matcher.common_prefix_search("hello world!");
assert(prefixes.size() == 2);
assert(prefixes[0].first == 5);
assert(prefixes[0].second == "こんにちは!");
assert(prefixes[1].first == 11);
assert(prefixes[1].second == "こんにちは世界!");
std::string output;
auto length = matcher.longest_common_prefix_search("hello world!", output);
assert(length == 11);
assert(output == "こんにちは世界!");
auto predictives = matcher.predictive_search("he");
assert(predictives.size() == 2);
assert(predictives[0].first == "hello");
assert(predictives[0].second == "こんにちは!");
assert(predictives[1].first == "hello world");
assert(predictives[1].second == "こんにちは世界!");
std::cout << "[Edit distance 1]" << std::endl;
for (auto [k, o]: matcher.edit_distance_search("hellow", 1)) {
std::cout << "key: " << k << " output: " << o << std::endl;
}
std::cout << "[Suggestions]" << std::endl;
for (auto [r, k, o]: matcher.suggest("hellow")) {
std::cout << "ratio: " << r << " key: " << k << " output: " << o << std::endl;
}
// Custom automaton: implement step(char), is_match() const, can_match() const,
// then plug it into custom_search() to drive the FST traversal with your own logic.
// (LevenshteinAutomaton, used internally by edit_distance_search, is a
// fuller example of the same contract.)
struct MaxLengthAutomaton {
size_t max_len;
size_t len = 0;
void step(char) { len++; }
bool is_match() const { return len <= max_len; }
bool can_match() const { return len <= max_len; }
};
std::cout << "[Custom search: words up to 6 chars long]" << std::endl;
matcher.custom_search(MaxLengthAutomaton{6}, [](const auto &k, const auto &o) {
std::cout << "key: " << k << " output: " << o << std::endl;
});
}
}
```
```
[Edit distance 1]
key: hello output: こんにちは
[Suggestions]
ratio: 0.810185 key: hello output: こんにちは
ratio: 0.504132 key: hello world output: こんにちは世界!
ratio: 0.0962963 key: world output: 世界!
[Custom search: words up to 6 chars long]
key: hello output: こんにちは!
key: world output: 世界!
```
## Benchmark
Measured with `benchmark/main.cc` on `/usr/share/dict/words` (235,976 keys, Apple M1 Pro, -O3). Build is the time to compile the dictionary, and the search columns are the total time of looking up all 235,976 keys 5 times.
| Library | Structure | Size | Build | Exact match | Common prefix |
|---|---|---:|---:|---:|---:|
| [darts-clone](https://github.com/s-yata/darts-clone) | double array | 8,755,880 | 64 ms | 22 ms | 23 ms |
| [ux-trie](https://github.com/hillbig/ux-trie) | LOUDS | 895,510 | 67 ms | 1,161 ms | 1,041 ms |
| [marisa-trie](https://github.com/s-yata/marisa-trie) | LOUDS | 743,368 | 69 ms | 305 ms | 313 ms |
| [BurntSushi/fst](https://github.com/BurntSushi/fst) (Rust) | FST | 1,501,442 | 90 ms | 540 ms | n/a |
| **cpp-fstlib (map\)** | FST | 1,070,382 | 125 ms | 215 ms | 216 ms |
| **cpp-fstlib (auto index)** | FST | 985,753 | 118 ms | 220 ms | 220 ms |
The `map` row stores an arbitrary `uint32_t` value per key, while the `auto index` row assigns sequential ids to the sorted keys, which is what the trie libraries above provide.
The BurntSushi/fst row was measured separately with `benchmark/fst-rust` (`cargo run --release`), a small Rust harness that builds a `fst::Map` with sequential ids as values and times `Map::get` the same way. It's a different process/toolchain (Rust, not linked into `benchmark/main.cc`), so treat the comparison as indicative rather than exact; its `Map` type has no built-in common-prefix search, so that column is n/a.
License
-------
MIT license (© 2022 Yuji Hirose)