用指標傳遞的字典樹

2021-06-06 14:06:32 字數 478 閱讀 5384

#include using namespace std;

#define num 26

#define type 'a'

class dictree

~dictree();

bool insert(string s, string s2);

string search(string s);

};//把資訊s2插入到結點s處

bool dictree::insert(string s,string s2)

if(i == len - 1)current->value=new string(s2);

} return 0;

}//搜尋s結點的資訊

string dictree::search(string s)

return ret;

}dictree::~dictree()

傳遞指標和傳遞指標的指標

總是不懂指標 看了乙個csdn的問題 豁然開朗 在寫乙個棧的東西,在銷毀的時候有點小問題 define position int define size t int define elemtype char define buttom 1 struct ststack typedef struct ...

用gdb來理解 值傳遞 指標傳遞 引用傳遞

1.常用的gdb命令 1 顯示 list list 顯示10行 list 1 顯示1 10行,再鍵入list或者回車,顯示下面10行 list 1,20 顯示1 20行 2 設定斷點 break break 15 在第15行設定斷點 break func 在函式func 入口設定斷點 info br...

字典樹(trie樹)的指標簡單實現pascal

問題1 給你乙個單詞集合,支援新增,刪除,詢問某個單詞出現次數。const maxword 100 maxn 100 type dictree rec rec record next array 1.maxword of dictree val boolean cnt longint end var...