xxxx18一60岁hd中国/日韩女同互慰一区二区/西西人体扒开双腿无遮挡/日韩欧美黄色一级片 - 色护士精品影院www

  • 大小: 640B
    文件類型: .rar
    金幣: 1
    下載: 0 次
    發(fā)布日期: 2021-01-07
  • 標(biāo)簽: 字典樹??

資源簡介

用C語言實(shí)現(xiàn)的字典樹算法,用C語言實(shí)現(xiàn)的字典樹算法。

資源截圖

代碼片段和文件信息

#include
#include?
????????????????????//字典樹或者鍵樹?
#define?KIND?26;????//字母種類?

typedef?struct?node{
????int?count;//記錄遍歷到該節(jié)點(diǎn)形成的字符串出現(xiàn)的次數(shù)?
????struct?node*?next[KIND];?//指向兒子節(jié)點(diǎn)?
}trie;

int?init_trie(trie*&?T)
{
????int?i?=?0;
????T->count?=?1;
????for(;?i?????????T->next[i]?=?NULL;
}?

int?insert(trie*&?root?char*?word)?//插入?
{
????trie*?temp;
????int?i?=?0?branch?=?0;
????
????if(root?==?NULL)
????{
????????root?=?(trie*)malloc(sizeof(trie));
????????init_trie(root);
????}?
????
????temp?=?root;
????while(word[i]?!=?‘\0‘)
????{
????????branch?=?word[i]?-?‘a(chǎn)‘;
????????if(tem

?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----

?????文件???????1336??2009-09-22?19:49??trie.cpp

-----------?---------??----------?-----??----

?????????????????1336????????????????????1


評論

共有 條評論