1.. Trie通常被称为"字典树"或"前缀树"
  • Trie的形象化描述如下图:
  • Trie的优势和适用场景
2.. 实现Trie
  • 实现Trie的业务无逻辑如下:
  • import java.util.TreeMap;
    
    public class Trie {
    
        private class Node {
    
            public boolean isWord;
    public TreeMap<Character, Node> next; // 构造函数
    public Node(boolean isWord) {
    this.isWord = isWord;
    next = new TreeMap<>();
    } // 无参数构造函数
    public Node() {
    this(false);
    }
    } private Node root;
    private int size; // 构造函数
    public Trie() {
    root = new Node();
    size = 0;
    } // 实现getSize方法,获得Trie中存储的单词数量
    public int getSize() {
    return size;
    } // 实现add方法,向Trie中添加新的单词word
    public void add(String word) { Node cur = root;
    for (int i = 0; i < word.length(); i++) {
    char c = word.charAt(i);
    if (cur.next.get(c) == null) {
    cur.next.put(c, new Node());
    }
    cur = cur.next.get(c);
    }
    if (!cur.isWord) {
    cur.isWord = true;
    size++;
    }
    } // 实现contains方法,查询Trie中是否包含单词word
    public boolean contains(String word) { Node cur = root;
    for (int i = 0; i < word.length(); i++) {
    char c = word.charAt(i);
    if (cur.next.get(c) == null) {
    return false;
    }
    cur = cur.next.get(c);
    }
    return cur.isWord; // 好聪明
    } // 实现isPrefix方法,查询Trie中时候保存了以prefix为前缀的单词
    public boolean isPrefix(String prefix) { Node cur = root;
    for (int i = 0; i < prefix.length(); i++) {
    char c = prefix.charAt(i);
    if (cur.next.get(c) == null) {
    return false;
    }
    cur = cur.next.get(c);
    }
    return true;
    }
    }

3.. Trie和简单的模式匹配

  • 实现的业务逻辑如下:
  • import java.util.TreeMap;
    
    class WordDictionary {
    
        private class Node {
    
            public boolean isWord;
    public TreeMap<Character, Node> next; public Node(boolean isWord) {
    this.isWord = isWord;
    next = new TreeMap<>();
    } public Node() {
    this(false);
    } } /**
    * Initialize your data structure here.
    */
    private Node root; public WordDictionary() {
    root = new Node();
    } /**
    * Adds a word into the data structure.
    */
    public void addWord(String word) {
    Node cur = root;
    for (int i = 0; i < word.length(); i++) {
    char c = word.charAt(i);
    if (cur.next.get(c) == null) {
    cur.next.put(c, new Node());
    }
    cur = cur.next.get(c);
    }
    cur.isWord = true;
    } /**
    * Returns if the word is in the data structure. A word could contain the dot character '.' to represent any one letter.
    */
    public boolean search(String word) {
    return match(root, word, 0);
    } private boolean match(Node node, String word, int index) {
    if (index == word.length()) {
    return node.isWord;
    } char c = word.charAt(index);
    if (c != '.') {
    if (node.next.get(c) == null) {
    return false;
    }
    return match(node.next.get(c), word, index + 1);
    } else {
    for (char nextChar : node.next.keySet()) {
    if (match(node.next.get(nextChar), word, index + 1)) {
    return true;
    }
    }
    return false;
    }
    }
    }

第三十篇 玩转数据结构——字典树(Trie)的更多相关文章

  1. 第三十二篇 玩转数据结构——AVL树(AVL Tree)

          1.. 平衡二叉树 平衡二叉树要求,对于任意一个节点,左子树和右子树的高度差不能超过1. 平衡二叉树的高度和节点数量之间的关系也是O(logn) 为二叉树标注节点高度并计算平衡因子 AVL ...

  2. 第三十三篇 玩转数据结构——红黑树(Read Black Tree)

    1.. 图解2-3树维持绝对平衡的原理: 2.. 红黑树与2-3树是等价的 3.. 红黑树的特点 简要概括如下: 所有节点非黑即红:根节点为黑:NULL节点为黑:红节点孩子为黑:黑平衡 4.. 实现红 ...

  3. 第三十一篇 玩转数据结构——并查集(Union Find)

    1.. 并查集的应用场景 查看"网络"中节点的连接状态,这里的网络是广义上的网络 数学中的集合类的实现   2.. 并查集所支持的操作 对于一组数据,并查集主要支持两种操作:合并两 ...

  4. 第二十九篇 玩转数据结构——线段树(Segment Tree)

          1.. 线段树引入 线段树也称为区间树 为什么要使用线段树:对于某些问题,我们只关心区间(线段) 经典的线段树问题:区间染色,有一面长度为n的墙,每次选择一段墙进行染色(染色允许覆盖),问 ...

  5. Java数据结构——字典树TRIE

    又称单词查找树,Trie树,是一种树形结构,是一种哈希树的变种. 典型应用是用于统计,排序和保存大量的字符串(但不仅限于字符串),所以经常被搜索引擎系统用于文本词频统计. 它的优点是:利用字符串的公共 ...

  6. 模板 - 字符串/数据结构 - 字典树/Trie

    使用静态数组的nxt指针的设计,大概比使用map作为nxt指针的设计要快1倍,但空间花费大概也大1倍.在数据量小的情况下,时间和空间效率都不及map<vector,int>.map< ...

  7. [POJ] #1002# 487-3279 : 桶排序/字典树(Trie树)/快速排序

    一. 题目 487-3279 Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 274040   Accepted: 48891 ...

  8. Delphi 泛型(三十篇)

    Delphi 泛型(三十篇)http://www.cnblogs.com/jxgxy/category/216671.html

  9. 字典树(Trie)详解

    详解字典树(Trie) 本篇随笔简单讲解一下信息学奥林匹克竞赛中的较为常用的数据结构--字典树.字典树也叫Trie树.前缀树.顾名思义,它是一种针对字符串进行维护的数据结构.并且,它的用途超级广泛.建 ...

随机推荐

  1. Antenna Placement poj 3020

    Antenna Placement Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 12104   Accepted: 595 ...

  2. Win10安装.net2.0/3.0

    Windows 安装.net2.0/3.0 将下列代码拷到本地bat文件中(bat文件和sxs文件夹同级),下载适用的.net安装包版本后放置到sxs文件夹,用管理员权限执行bat文件即可. @ech ...

  3. ASP.NET Identity登录原理

    https://www.cnblogs.com/jesse2013/p/aspnet-identity-claims-based-authentication-and-owin.html 如何实现登录 ...

  4. 安装Logstash到linux(源码)

    运行环境 系统版本:CentOS Linux release 7.3.1611 (Core) 软件版本:logstash-7.1.0 硬件要求:最低2核4GB 安装过程 1.源码安装JDK 1.1.从 ...

  5. [ERR] Node goodsleep.vip:6379 is not empty. Either the node already knows other nodes (check with CLUSTER NODES) or contains some key in database 0.

    解决方案 以前的cluster节点信息 保留 要删除 dump.rdb node.conf集群启动时自动生成文件

  6. jQuery---动态创建节点

    动态创建节点 js的方法 var box = document.getElementById("box"); var a = document.createElement(&quo ...

  7. Educational Codeforces Round 65 (Rated for Div. 2)B. Lost Numbers(交互)

    This is an interactive problem. Remember to flush your output while communicating with the testing p ...

  8. python语言基础3

    一:python函数 是组织好的,可重复使用的,用来实现单一,或相关联功能的代码块.以前使用过的一些Python提供的内建函数,如print().max(4,18).min(100,50).当然我们自 ...

  9. XSS漏洞原理

    注入型漏洞的本质都是服务端分不清用户输入的内容是数据还是指令代码,从而造成用户输入恶意代码传到服务端执行. 00x01js执行 Js是浏览器执行的前端语言,用户在存在xss漏洞的站点url后者能输入数 ...

  10. [Python]pyhon去除txt文件重复行 python 2020.2.10

    代码如下: import shutil readPath='E:/word4.txt' #要处理的文件 writePath='E:/word5.txt' #要写入的文件 lines_seen=set( ...