problemscpp
A collection of my answers to algorithm problems in c++.
|
#include <leetcode.h>
Public 成员函数 | |
TrieNode () | |
TrieNode (char ch) | |
string | get_prefix (string root, const string &str) const |
void | insert (const string &str) |
Public 属性 | |
char | ch |
bool | endroot |
TrieNode * | next [26] = {} |
在文件 leetcode.h 第 565 行定义.
|
inline |
|
inlineexplicit |
在文件 leetcode.h 第 573 行定义.
string TrieNode::get_prefix | ( | string | root, |
const string & | str | ||
) | const |
在文件 leetcode.cpp 第 1293 行定义.
引用了 endroot, get_prefix(), next , 以及 acwing::acwing836_408::root.
被这些函数引用 get_prefix().
void TrieNode::insert | ( | const string & | str | ) |
char leetcode::UhWRSj::TrieNode::ch |
在文件 leetcode.h 第 566 行定义.
bool leetcode::UhWRSj::TrieNode::endroot |
在文件 leetcode.h 第 568 行定义.
被这些函数引用 get_prefix() , 以及 insert().
TrieNode* leetcode::UhWRSj::TrieNode::next[26] = {} |
在文件 leetcode.h 第 567 行定义.
被这些函数引用 get_prefix() , 以及 insert().