1,需要先将要被查找的文字通过structure方法按照拼音构建成一棵树,每个匹配节点上装有查找目标对象。
2,完成的功能:用户在输入框里输入拼音或者汉字,输入内容转化成拼音,然后按照拼音遍历树,找到结果。
3,用到了开元包pinyin4j
4,没有考虑多音字。可以按需要对多音字做多路径存储。子节点可以优化成map结构,优化遍历速度。
package com.test.common.utils; import java.io.Serializable; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import java.util.Map; /** * Trie字典树类,节点用内部类Node表示,提供构建树、插入节点、搜索、等方法。 * 需要优化的地方:1,多音字,2子节点的存储结构和查找 * @author yfchenlei * @date 2012-9-12 */ public class Trie<T> implements Serializable{ private static final long serialVersionUID = 5694541776693908755L; /** * 根节点 */ private Node<T> root; /** * 最大搜索结果个数 */ private int maxResult = 10; /** * 默认构造方法 */ public Trie(){ } /** * 带参构造方法 * @param maxResult 最大搜索结果个数 */ public Trie(int maxResult){ this.maxResult = maxResult; } /** * 根据传入数据集合构建一颗字典树 * @param words 数据集合 */ public void structure(Map<String, T> items){ root = new Node<T>('0'); if(items == null){ return; } Iterator<String> it = items.keySet().iterator(); while(it.hasNext()){ String key = it.next(); T value= items.get(key); if(value != null){ insert(key, value); } } } /** * 向字典树插入一个数据,word。 * @author yfchenlei * @date 2012-9-12 * @param word 要插入到字典树的数据 */ public void insert(String word,T item){ String pinyin = PinYin.cn2Pinyin(word); if(root == null){ root = new Node<T>('0'); } Node<T> curNode = root; int wordLength = pinyin.length(); for(int i = 0; i< wordLength; i++){ char value = pinyin.charAt(i); Node<T> nextNode = curNode.getChild(value); if(nextNode == null){ nextNode = new Node<T>(value); curNode.addChild(nextNode); } curNode = nextNode; } curNode.addItem(item); } /** * 根据输入的word的拼音,查找符合这个拼音前缀的所有集合,但不超过最大结果个数。 * @author yfchenlei * @date 2012-9-12 * @param word 根据这个数据进行查找 * @return 符合条件的集合 */ public List<T> find(String word){ List<T> result = new ArrayList<T>(maxResult); if(root == null || word == null){ return result; } String pinyin = PinYin.cn2Pinyin(word); Node<T> curNode = root; for(int i = 0; i < pinyin.length(); i++){ Node<T> child = curNode.getChild(pinyin.charAt(i)); if(child != null){ curNode = child; }else{ return result; } } result = traverse(curNode, result); return result; } /** * 遍历字典树的递归方法,每次递归,将结果积累到result参数。 * @author yfchenlei * @date 2012-9-12 * @param node 当前节点 * @param result 结果集合 * @return 返回最后的集合 */ private List<T> traverse(Node<T> node, List<T> result){ if(node == null || result.size() == maxResult){ return result; } List<T> items = node.getItems(); if(items != null){ if(result.size() + items.size() > maxResult){ for(int i = 0; i < maxResult - result.size(); i++){ result.add(items.get(i)); } }else{ result.addAll(node.getItems()); } } Node<T>[] children = node.getChildren(); if(children != null){ for(int i = 0; i < children.length; i++){ if(result.size() == maxResult){ break; } traverse(children[i], result); } } return result; } /** * trie的子类,表示树节点 * @author yfchenlei * @date 2012-9-12 */ @SuppressWarnings("hiding") class Node<T> implements Serializable{ private static final long serialVersionUID = -7145041421696945423L; /** * 节点的路径值 */ private char value; /** * 子节点集合 */ private Node<T>[] children; /** * 节点中的值集合,因为拼音可能重复,所以是集合。 */ private List<T> items; public Node(char value){ this.value = value; } public void addItem(T item){ if(items == null){ items = new ArrayList<T>(1); } items.add(item); } public void addChild(Node<T> node){ if(children == null){ this.children = new Node[26]; } children[node.getValue() - 'a'] = node; } public Node<T> getChild(char value){ int pos = value - 'a'; if(children == null){ return null; } return children[pos]; } public char getValue() { return value; } public Node<T>[] getChildren() { return children; } public List<T> getItems() { return items; } } }
用到的转化拼音工具:
package com.test.common.utils; import net.sourceforge.pinyin4j.PinyinHelper; import net.sourceforge.pinyin4j.format.HanyuPinyinCaseType; import net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat; import net.sourceforge.pinyin4j.format.HanyuPinyinToneType; import net.sourceforge.pinyin4j.format.exception.BadHanyuPinyinOutputFormatCombination; /** * 汉字转拼音支持工具 * @author yfchenlei * @date 2012-9-13 */ public class PinYin { private static HanyuPinyinOutputFormat defaultFormat; static{ defaultFormat = new HanyuPinyinOutputFormat(); defaultFormat.setCaseType(HanyuPinyinCaseType.LOWERCASE); defaultFormat.setToneType(HanyuPinyinToneType.WITHOUT_TONE); } public static String cn2Pinyin(String cn){ StringBuffer result = new StringBuffer(); char[] chars = cn.toCharArray(); try { for(int i = 0; i < chars.length; i++){ if(chars[i] > 128){ String[] pinyin = PinyinHelper.toHanyuPinyinStringArray(chars[i], defaultFormat); result.append(pinyin[0]); }else{ char letter = Character.toLowerCase(chars[i]); if(letter >= 98 && letter <= 122) result.append(chars[i]); } } } catch (BadHanyuPinyinOutputFormatCombination e) { e.printStackTrace(); return null; } return result.toString(); } }
。
相关推荐
- **电话号码查找**:在电话簿中,通过字典树可以迅速找到所有以特定数字序列开头的电话号码。 了解并掌握字典树的概念及其应用,对于提升编程能力和解决实际问题具有重要意义。通过阅读和分析"DemoNumberTrie"中的...
Trie树,又称前缀树或字典树,是一种用于存储字符串的数据结构,它在IT领域尤其是数据结构和算法的学习中占据着重要的地位。这个压缩包包含的“王赟.doc”和“王赟.ppt”很可能是关于Trie树的详细讲解和实践题目,...
在字典树(Trie,也称为前缀树或数字检索树)中应用深度优先遍历,可以有效地统计单词出现的个数。字典树是一种数据结构,常用于存储大量字符串,它允许我们快速查找以特定前缀开头的所有单词。 在Java中,实现字典...
字典树的主要特点是它能通过键的公共前缀来组织数据,使得查找具有相同前缀的字符串变得非常高效。在本篇内容中,我们将深入探讨Python实现简单字典树的方法。 首先,我们需要了解字典树的基本结构。字典树是由节点...
在给定的压缩包文件中,我们可以看到一个名为"xor.zip_puttinge9a_区间异或最大_字典树查找区间异或最大值_寻找最窄区间_异或最大值"的文件,这暗示了使用字典树(Trie)数据结构来解决这一问题。 首先,让我们深入...
什么是Trie树 Trie树通常又称为字典树、单词查找树或前缀树,是一种用于快速检索的多叉树结构。如图数字的字典是一个10叉树: 同理小写英文字母或大写英文字母的字典数是一个26叉树。如上图可知,Trie树的根结点是...
接下来是Trie树,也被称为前缀树或字典树。Trie树是一种用于存储字符串的数据结构,通过使用节点间的分支来表示字符串的字符。"Trie.cpp"很可能是实现Trie树插入、查找和删除操作的代码。Trie树在字符串查找、自动...
它的名字来源于英文单词"retrieval",被称作前缀字、单词查找树或字典树。Trie树是一种特殊的哈希树变种,通过利用字符串的公共前缀来减少不必要的字符串比较,从而提高查询效率。 Trie树的基本特性如下: 1. 根...
5. **字典树(Trie)**:字典树是一种高效的数据结构,主要用于字符串搜索。它通过将字符串的每个字符作为节点,构建出一棵树,使得查找、插入和删除操作的时间复杂度接近O(1)。 6. **位运算**:位运算是在二进制...
首先,我们来看一下如何使用Trie树(字典树)来实现变位词查询。Trie树是一种特殊的树形数据结构,用于存储一个关联数组,其中的键通常是字符串。每个节点代表一个前缀,而叶子节点通常代表完整的关键词。在Trie树中...
Trie,又称前缀树或字典树,是一种有序树,用于存储动态集合或关联数组,其中的键通常是字符串。Trie树的主要特点是能够快速查找具有相同前缀的字符串,通过将字符串的每个字符作为节点,构建出一种层次结构。根节点...
其中,Trie(又称“前缀树”或“字典树”)是一种高效的数据结构,常用于字符串搜索和存储。Rust作为一种系统级编程语言,以其内存安全和高性能特性吸引了众多开发者。本文将深入探讨在Rust中实现的rust_radix_trie...
此外,字典序还与字典树(如Trie)紧密相关。字典树是一种数据结构,用于高效地存储和检索字符串集合。在构建字典树时,字典序可以帮助我们决定节点的分支顺序,从而提高查找效率。 总的来说,字典序是计算机科学中...
最后,"Trie 树",也称为字典树或前缀树,是一种用于字符串查找的树形数据结构。它允许快速查找具有公共前缀的字符串,常用于关键词搜索和自动补全功能。 "LCS 最长公共子序列"虽然不直接属于排序或查找,但它是...
这道题同样可以使用哈希函数或者Trie字典树解决,通过在原始字符串上直接处理,减少额外的空间消耗。 4. HDU 2648【基础】 商店价格排名问题可以通过哈希表来快速查找特定商店的价格变化,同时通过排序和二分查找来...
字典树(Trie)是一种用于高效存储和检索字符串的数据结构。在Python中,可以使用列表或字典来实现字典树。它允许快速查找、插入和删除字符串,尤其适用于关键词搜索和自动补全功能。 “理论讲解:字典树”(36....
字典序(Lexicographic Order),也称为字典顺序或字面顺序,是计算机科学中一个重要的概念,特别是在字符串处理、排序算法以及数据结构如字典树(Trie)等领域广泛应用。字典序的定义源自于我们查阅字典时按照字母...
1. **字典树(Trie)的构建**:首先构建一个字典树来存储所有的模式字符串。这一步是为了快速定位到模式字符串的关键位置。 2. **失败指针的构造**:构建失败指针以确保在模式匹配过程中不会出现回溯,从而提高效率...