1
什麼是搜索功能特里數據結構implementaion的bug
search_word();
的錯誤,這是實現使用效率的時間複雜度爲特里或沒有像插入/搜查行動。 考慮一個1500字符的字符串,在不到2秒的時間內執行插入/搜索操作,是否可以通過?
class Trie
{
private:
struct node
{
bool isWord;
node* child[26];
node()
{
for(int i = 0;i < 26;i++)
child[i] = NULL;
isWord = false;
}
};
void insert_word(int index, node* vertex, int i, string s)
{
if(index == SZ)
{
vertex -> isWord = true;
return;
}
int c = s[index] - 'a';
if(vertex -> child[c] == NULL)
vertex -> child[c] = new node;
insert_word(index + 1, vertex -> child[c], c, s);
}
bool search_word(int index, node* vertex, int i, string s)
{
if(index == SZ && vertex -> isWord == true)
return true;
if(index == SZ && vertex -> isWord == false)
return false;
int c = s[index] - 'a';
if(vertex -> child[c] == NULL)
return false;
else
return search_word(index + 1, vertex -> child[c], c, s);
}
public:
int SZ;
node* root;
Trie()
{
root = new node;
}
void insert_word(string s)
{
SZ = s.size();
insert_word(0, root, s[0] - 'a', s);
}
bool search_word(string s)
{
SZ = s.size();
return search_word(0, root, s[0] - 'a', s);
}
};
更新:發現錯誤和代碼必須正常工作。