我不斷收到我的加載函數的段錯誤。 bool load(const char *dictionary)
{
//create a trie data type
typedef struct node
{
bool is_word;
struct node *children[27]; //this is a pointer too!
我寫了這段代碼來測試前綴樹,但由於某種原因,我得到錯誤「TrieNode」對象不可調用。有人能幫我解決這個錯誤嗎? 爲什麼TrieNode()類不可調用? # Prefix Tree or Trie Data Structure
class TrieNode(object):
def __init__(self):
self.children = {}
self