博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
lintcode 442实验Trieste
阅读量:6223 次
发布时间:2019-06-21

本文共 2755 字,大约阅读时间需要 9 分钟。

描述

实现一个 Trie,包含 insertsearch, 和 startsWith 这三个方法。

样例

思路

在了解字典树的性质和结构之后,就容易理解这次要求的是与之相似的三个功能:插入,查找,前缀查找。

插入操作:

建立结点pre,复制root。在pre的children[index]存放插入词汇word的第i个字符(用数字0到25表示a~z的26个字母,记作index),依次类推。若当前的children不存在,则建立大小为26的children结点数组。若children结点数组里的第index个TrieNode为空,则放入新的值为word.charAt(i)的TrieNode。然后pre前进到当前结点的children,pre.children[index],继续循环操作word的下一个字符。直到放入word的最后一个字符以后,修改pre.exist值为true,说明pre之前的分支完整放入了word。

 

查找操作:

同插入一样,复制root到结点pre,然后遍历查找word的每一个字符word.charAt(i),若循环里某个pre.children[index]不存在,或者word的最后一个字符的exist标记为false,则返回false。否则,循环结束,返回true。

 

前缀查找操作:唯一和查找操作不同的地方,是不要求word的最后一个字符的exist标记为true。只要遍历完String prefix,就返回true。

/** * Your Trie object will be instantiated and called as such: * Trie trie = new Trie(); * trie.insert("lintcode"); * trie.search("lint"); will return false * trie.startsWith("lint"); will return true */class TrieNode {    // Initialize your data structure here.    boolean exist;    char ch;    TrieNode[] children;    public TrieNode() {    }    public TrieNode(char ch) {    this.ch = ch;    }}public class Trie {    private TrieNode root;    public Trie() {        root = new TrieNode();    }    // Inserts a word into the trie.    public void insert(String word) {        if (word == null || word.length() == 0) return;        TrieNode pre = root;        for (int i = 0; i < word.length(); i++) {            if (pre.children == null) pre.children = new TrieNode[26];            int index = word.charAt(i) - 'a';            if (pre.children[index] == null) {                pre.children[index] = new TrieNode(word.charAt(i));            }            pre = pre.children[index];            if (i == word.length()-1) pre.exist = true;        }    }    // Returns if the word is in the trie.    public boolean search(String word) {        if (word == null || word.length() == 0) return false;        TrieNode pre = root;        for (int i = 0; i < word.length(); i++) {            int index = word.charAt(i) - 'a';            if (pre.children == null || pre.children[index] == null) return false;            if (i == word.length()-1 && pre.children[index].exist == false) return false;            pre = pre.children[index];        }        return true;    }    // Returns if there is any word in the trie    // that starts with the given prefix.    public boolean startsWith(String prefix) {        if (prefix == null || prefix.length() == 0) return false;        TrieNode pre = root;        for (int i = 0; i < prefix.length(); i++) {            int index = prefix.charAt(i) - 'a';            if (pre.children == null || pre.children[index] == null) return false;            pre = pre.children[index];        }        return true;    }}

这次的题有些麻烦,还是在网上查找相关资料才能最终完成这个结果

 

转载于:https://www.cnblogs.com/li1400802003/p/7348486.html

你可能感兴趣的文章
PHP的数据库显示中文乱码有几种情况?
查看>>
fedora25配置 Infinality 字体渲染增强
查看>>
linux修改主机名
查看>>
squid 如何清除缓存
查看>>
Discuz!云平台能给站长带来什么?
查看>>
三星超级品牌日背后:全品类关联营销优势凸现
查看>>
android4.4以上透明状态栏简单设置
查看>>
双十一流量洪峰 支撑阿里核心业务的云数据库揭秘
查看>>
45. 源代码阅读-RocketMQ-tools
查看>>
修改linux下的主机名
查看>>
每天一个linux命令(39):grep 命令
查看>>
centos释放无用内存
查看>>
事必躬亲利与弊
查看>>
马哥笔记第十五天系统安装、kickstart、anaconda、dhcp、tftp、pxe
查看>>
linux shell中单引号、双引号和没有引号的区别
查看>>
我的友情链接
查看>>
NAT使用大全
查看>>
cocos中常见的22中动作
查看>>
Spring 访问数据库的三个方法(2)
查看>>
undefined reference to `libiconv_open 无法编译PHP
查看>>