/** エレメントの追加 * * @param[in] node TextParserNodeのポインタ * @return エラーコード * * ディレクトリエレメントを追加します * */ TextParserError TextParserNode::addElement(TextParserNode *node) { std::string label = TextParserStringToLower(node->_label); _nodes.insert(str_node(label, node)); return TP_NO_ERROR; }
void HashedSplays::findAll(std::string in_part) { std::cout << "Printing the results of the nodes that start with '" << in_part << "'\n"; Node str_node(in_part, 1); //SplayTree's findAll function does the printing table_[getIndex(in_part[0])].findAll(str_node); }