Update
This commit is contained in:
parent
7b013c70a1
commit
d1380dbb32
|
@ -310,7 +310,7 @@ Enumerating all registered keys...
|
|||
9 : Yun</code></pre>
|
||||
<p>As shown in the output, <code>xcdat::Trie</code> assigns unique integer IDs to each registered key. The ID order is random, depending on node arrangement.</p>
|
||||
<h2 id="api">API</h2>
|
||||
<p>You can build a dictionary using static member function <code>xcdat::TrieBuilder::build<bool>()</code>. This function receives a set of keywords and returns the resulting class object of <code>xcdat::Trie<bool></code>. For the usage, refer to the header comments of <a href="https://github.com/kampersanda/xcdat/blob/master/include/xcdat/TrieBuilder.hpp">xcdat::TrieBuilder.hpp</a>. Also for the usage of <code>xcdat::Trie</code>, refer to the header comments of <a href="https://github.com/kampersanda/xcdat/blob/master/include/xcdat/Trie.hpp">xcdat::Trie</a>.</p>
|
||||
<p>You can build a dictionary using static member function <code>xcdat::TrieBuilder::build()</code>. This function receives a set of keywords and returns the resulting class object of <code>xcdat::Trie</code>. For the usage, refer to the header comments of <a href="https://github.com/kampersanda/xcdat/blob/master/include/xcdat/TrieBuilder.hpp"><code>xcdat::TrieBuilder.hpp</code></a>. Also for the usage of <code>xcdat::Trie</code>, refer to the header comments of <a href="https://github.com/kampersanda/xcdat/blob/master/include/xcdat/Trie.hpp"><code>xcdat::Trie</code></a>.</p>
|
||||
<p>The detailed descriptions of AIP are under construction…</p>
|
||||
<h2 id="benchmark">Benchmark</h2>
|
||||
<p>Work in progress…</p>
|
||||
|
|
|
@ -262,10 +262,10 @@ As shown in the output, `xcdat::Trie` assigns unique integer IDs to each registe
|
|||
|
||||
## API
|
||||
|
||||
You can build a dictionary using static member function `xcdat::TrieBuilder::build<bool>()`.
|
||||
This function receives a set of keywords and returns the resulting class object of `xcdat::Trie<bool>`.
|
||||
For the usage, refer to the header comments of [xcdat::TrieBuilder.hpp](https://github.com/kampersanda/xcdat/blob/master/include/xcdat/TrieBuilder.hpp).
|
||||
Also for the usage of `xcdat::Trie`, refer to the header comments of [xcdat::Trie](https://github.com/kampersanda/xcdat/blob/master/include/xcdat/Trie.hpp).
|
||||
You can build a dictionary using static member function `xcdat::TrieBuilder::build()`.
|
||||
This function receives a set of keywords and returns the resulting class object of `xcdat::Trie`.
|
||||
For the usage, refer to the header comments of [`xcdat::TrieBuilder.hpp`](https://github.com/kampersanda/xcdat/blob/master/include/xcdat/TrieBuilder.hpp).
|
||||
Also for the usage of `xcdat::Trie`, refer to the header comments of [`xcdat::Trie`](https://github.com/kampersanda/xcdat/blob/master/include/xcdat/Trie.hpp).
|
||||
|
||||
The detailed descriptions of AIP are under construction...
|
||||
|
||||
|
|
Loading…
Reference in a new issue