本文整理汇总了C++中utf8_string::front方法的典型用法代码示例。如果您正苦于以下问题:C++ utf8_string::front方法的具体用法?C++ utf8_string::front怎么用?C++ utf8_string::front使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类utf8_string
的用法示例。
在下文中一共展示了utf8_string::front方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: add
void AutoComplete::add(const utf8_string& word){
for (size_t i = 0; i != m_nodes.size(); i++){
if (m_nodes[i]->m_char == word.front()){
m_nodes[i]->extend(slice_from(word, 1));
return;
}
}
ACNode* node = new ACNode(word.front());
m_nodes.push_back(node);
node->extend(slice_from(word, 1));
}
示例2: extend
void extend(const utf8_string& word){
if (!word.empty()){
ACNode* node = add(word.front());
node->extend(slice_from(word, 1));
}
else{
add(chars::full_stop);
}
}
示例3: match
Words AutoComplete::match(const utf8_string& str){
WordsImpl* w = new WordsImpl();
w->m_node = nullptr;
if (str.empty()){
return Words(w);
}
for (size_t i = 0; i != m_nodes.size(); i++){
ACNode* node = m_nodes[i];
if (node->m_char == str.front()){
ACNode* found = node->find(str);
if (found != nullptr){
w->m_node = found;
w->m_base = str;
break;
}
}
}
return Words(w);
}