数据之美之Trie树

原博客地址:http://blog.csdn.net/nash_/article/details/8227610

Trie树(又叫字典树,前缀树,单词查找树,键树)是一种树形数据结构,直接来看图:


我们来看看Trie树的特点:根节点为空值,剩下每一个节点保存一个字母。知道这些就够了!

我们再来看看这棵树能干什么?如果从根节点遍历到某一个节点把路径节点的值连在一起就构成了一个字符串,利用这个特点很容易想到这棵树的第一个功能能帮我们查找某一个单词是否在树中(需要在每一个节点设置一个标志,表示从根节点到此节点是否构成一个单词);如果该单词存在,我们可以利用它实现第二个功能:去除重复单词;同样如果该词存,在我们还可以看出它的第三个功能:统计单词频率;因为这是一个树形结构我们利用这个特点很容易看出它的第四个功能能帮我们查找N个单词的最长公共前缀;如果我们按顺序遍历输出整棵树,发现它的第五个功能:对字符串排序


这棵树创建看起来比较容易,就有一个问题需要我们考虑:父节点如何保存孩子节点? 主要有两种方式供大家参考:

1.因为是英文字符,我们可以用Node[26]来保存孩子节点(如果是数字我们可以用Node[10]),这种方式最快,但是并不是所有节点都会有很多孩子,所以这种方式浪费的空间太多

2.用一个链表根据需要动态添加节点。这样我们就可以省下不小的空间,但是缺点是搜索的时候需要遍历这个链表,增加了时间复杂度。


下面我用数组保存孩子节点的方式实现的trie树:

  1. class TrieNode{//结点类   
  2.       
  3.     private static final int  NUMBER = 26;  
  4.     private char _value;  
  5.     private boolean _isWord;//从根节点到这个节点存不存在一个单词   
  6.     TrieNode[] _children = new TrieNode[NUMBER];//子结点集合   
  7.       
  8.     public TrieNode(char c) {  
  9.         this.setValue(c);  
  10.     }  
  11.     public char getValue() {  
  12.         return _value;  
  13.     }  
  14.     public void setValue(char _value) {  
  15.         this._value = _value;  
  16.     }  
  17.     public boolean isWord() {  
  18.         return _isWord;  
  19.     }  
  20.     public void setIsWord(boolean _isWord) {  
  21.         this._isWord = _isWord;  
  22.     }  
  23.       
  24.   
  25. }  
  26.   
  27. public class TrieTree {  
  28.       
  29.     static String[] _words = {"add","am","good","the","think"};//待插入单词   
  30.   
  31.     private boolean searchWord(TrieNode _root, String _word) {  
  32.       
  33.         if(null == _root || null == _word || "".equals(_word))  
  34.             return false;  
  35.         char[] cs = _word.toCharArray();//将字符串转化为字符数组   
  36.         for(int i = 0; i < cs.length; i++){  
  37.               
  38.             int index;  
  39.             if(cs[i] >= 'A' && cs[i] <= 'Z'){  
  40.                 index = cs[i]-'A';  
  41.             }  
  42.             else if(cs[i] >= 'a' && cs[i] <= 'z')   
  43.                 index = cs[i] - 'a';  
  44.             else  
  45.                 return false;  
  46.               
  47.             TrieNode child_node = _root._children[index];  
  48.                   
  49.             if(null != child_node){//找到相同字符   
  50.                 if(child_node.isWord())//如果找到该单词   
  51.                     return true;  
  52.             }                 
  53.               
  54.             if(null == child_node)//如果在i层没找到相同字符       
  55.                 return false;  
  56.             _root = child_node;//重设根节点   
  57.               
  58.               
  59.         }  
  60.         return false;  
  61.     }  
  62.   
  63.   
  64.     private void insertIntoTree(TrieNode _root, String _word) {//插入一个单词   
  65.           
  66.         if(null == _root || null == _word || "".equals(_word))  
  67.             return;  
  68.         char[] cs = _word.toCharArray();//将字符串转化为字符数组   
  69.         for(int i = 0; i < cs.length; i++){  
  70.               
  71.             int index;//对应的索引值   
  72.             if(cs[i] >= 'A' && cs[i] <= 'Z'){  
  73.                 index = cs[i]-'A';  
  74.             }  
  75.             else if(cs[i] >= 'a' && cs[i] <= 'z')   
  76.                 index = cs[i] - 'a';  
  77.             else  
  78.                 return;  
  79.               
  80.             TrieNode child_node = _root._children[index];  
  81.             if(null == child_node){//如果没找到   
  82.                 TrieNode new_node = new TrieNode(cs[i]);//创建新节点   
  83.                 if(i == cs.length-1)//如果遍历到该单词最后一个字符   
  84.                     new_node.setIsWord(true);//把该单词存在树中   
  85.                 _root._children[index] = new_node;//连接该节点   
  86.                 _root = new_node;  
  87.                   
  88.             }else  
  89.                 _root = child_node;//更新树根   
  90.               
  91.               
  92.         }  
  93.     }  
  94.   
  95.     private void printTree(TrieNode _root,char[] _word,int index) {  
  96.           
  97.         if(_root == null)  
  98.             return;  
  99.         if(_root.isWord()){//如果根节点到此节点构成一个单词则输出   
  100.             for(char c : _word){  
  101.                 if(c != ' ')  
  102.                     System.out.print(c);  
  103.             }  
  104.                   
  105.             System.out.println();  
  106.         }  
  107.               
  108.         for(TrieNode node : _root._children){//遍历树根孩子节点   
  109.             if(node != null){//回溯法遍历该树   
  110.                 _word[index++] = node.getValue();  
  111.                 printTree(node,_word,index);  
  112.                 _word[index] = ' ';  
  113.                 index--;  
  114.             }  
  115.         }  
  116.               
  117.     }  
  118.     public static void main(String[] args){  
  119.         TrieTree _tree = new TrieTree();//创建一棵树   
  120.         TrieNode _root = new TrieNode(' ');//创建根节点   
  121.         for(String word : _words)//插入单词   
  122.             _tree.insertIntoTree(_root,word);  
  123.         char[] _word = new char[20];  
  124.         _tree.printTree(_root,_word,0);//打印树中单词   
  125.         boolean status = _tree.searchWord(_root,"think");//查询树中是否存在某单词   
  126.         System.out.println(status);  
  127.     }  
  128. }  
class TrieNode{//结点类
	
	private static final int  NUMBER = 26;
	private char _value;
	private boolean _isWord;//从根节点到这个节点存不存在一个单词
	TrieNode[] _children = new TrieNode[NUMBER];//子结点集合
	
	public TrieNode(char c) {
		this.setValue(c);
	}
	public char getValue() {
		return _value;
	}
	public void setValue(char _value) {
		this._value = _value;
	}
	public boolean isWord() {
		return _isWord;
	}
	public void setIsWord(boolean _isWord) {
		this._isWord = _isWord;
	}
	

}

public class TrieTree {
	
	static String[] _words = {"add","am","good","the","think"};//待插入单词

	private boolean searchWord(TrieNode _root, String _word) {
	
		if(null == _root || null == _word || "".equals(_word))
			return false;
		char[] cs = _word.toCharArray();//将字符串转化为字符数组
		for(int i = 0; i < cs.length; i++){
			
			int index;
			if(cs[i] >= 'A' && cs[i] <= 'Z'){
				index = cs[i]-'A';
			}
			else if(cs[i] >= 'a' && cs[i] <= 'z') 
				index = cs[i] - 'a';
			else
				return false;
			
			TrieNode child_node = _root._children[index];
				
			if(null != child_node){//找到相同字符
				if(child_node.isWord())//如果找到该单词
					return true;
			}				
			
			if(null == child_node)//如果在i层没找到相同字符	
				return false;
			_root = child_node;//重设根节点
			
			
		}
		return false;
	}


	private void insertIntoTree(TrieNode _root, String _word) {//插入一个单词
		
		if(null == _root || null == _word || "".equals(_word))
			return;
		char[] cs = _word.toCharArray();//将字符串转化为字符数组
		for(int i = 0; i < cs.length; i++){
			
			int index;//对应的索引值
			if(cs[i] >= 'A' && cs[i] <= 'Z'){
				index = cs[i]-'A';
			}
			else if(cs[i] >= 'a' && cs[i] <= 'z') 
				index = cs[i] - 'a';
			else
				return;
			
			TrieNode child_node = _root._children[index];
			if(null == child_node){//如果没找到
				TrieNode new_node = new TrieNode(cs[i]);//创建新节点
				if(i == cs.length-1)//如果遍历到该单词最后一个字符
					new_node.setIsWord(true);//把该单词存在树中
				_root._children[index] = new_node;//连接该节点
				_root = new_node;
				
			}else
				_root = child_node;//更新树根
			
			
		}
	}

	private void printTree(TrieNode _root,char[] _word,int index) {
		
		if(_root == null)
			return;
		if(_root.isWord()){//如果根节点到此节点构成一个单词则输出
			for(char c : _word){
				if(c != ' ')
					System.out.print(c);
			}
				
			System.out.println();
		}
			
		for(TrieNode node : _root._children){//遍历树根孩子节点
			if(node != null){//回溯法遍历该树
				_word[index++] = node.getValue();
				printTree(node,_word,index);
				_word[index] = ' ';
				index--;
			}
		}
			
	}
	public static void main(String[] args){
		TrieTree _tree = new TrieTree();//创建一棵树
		TrieNode _root = new TrieNode(' ');//创建根节点
		for(String word : _words)//插入单词
			_tree.insertIntoTree(_root,word);
		char[] _word = new char[20];
		_tree.printTree(_root,_word,0);//打印树中单词
		boolean status = _tree.searchWord(_root,"think");//查询树中是否存在某单词
		System.out.println(status);
	}
}


==================================================================================================

 

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值