C++字典树/Trie树模板总结

一. 基本结构

	class Tree {
   
	public:
	    bool isWord;
	    vector<Tree*> v;
	
	    /** Initialize your data structure here. */
	    Trie() {
   
	        isWord = false;
	        v.

你可能感兴趣的:(算法小结,c++,算法)