Trie 类型的题目总结

2024-09-04 14:48
文章标签 类型 总结 题目 trie

本文主要是介绍Trie 类型的题目总结,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

trie字典树可以用来查找单词或者搜索剪枝用。

Implement Trie (Prefix Tree) 实现一个 Trie,包含 insertsearch, 和 startsWith 这三个方法。(模板必须记住;没有儿子建立儿子,有儿子走儿子;)

class Trie {private class TrieNode {public TrieNode[] children;public boolean isword;public TrieNode () {this.children = new TrieNode[26];this.isword = false;}}/** Initialize your data structure here. */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 cur = root;for(int i = 0; i < word.length(); i++) {char c = word.charAt(i);if(cur.children[c - 'a'] == null) {cur.children[c - 'a'] = new TrieNode();}cur = cur.children[c - 'a'];}cur.isword = true;}/** Returns if the word is in the trie. */public boolean search(String word) {TrieNode cur = searchPrefix(word);return cur != null && cur.isword;}/** Returns if there is any word in the trie that starts with the given prefix. */public boolean startsWith(String prefix) {TrieNode cur = searchPrefix(prefix);return cur != null;}private TrieNode searchPrefix(String prefix) {if(prefix == null || prefix.length() == 0) {return null;}TrieNode cur = root;for(int i = 0; i < prefix.length(); i++) {char c = prefix.charAt(i);if(cur.children[c - 'a'] == null) {return null;}cur = cur.children[c - 'a'];}return cur;}
}/*** Your Trie object will be instantiated and called as such:* Trie obj = new Trie();* obj.insert(word);* boolean param_2 = obj.search(word);* boolean param_3 = obj.startsWith(prefix);*/

Add and Search Word - Data structure design (遇见 ‘.’ 之后,for循环check每一个可能性;注意这题我写了两个坑:

1. index == word.length()的时候,返回的是cur.isword, 而不是直接返回true;

2. for循环的时候,一定要判断cur.children[i] != null, 也就是判断存入的单词,是否这条路径;搜索所有的路径,那就是DFS搜索,每一种情况都要check,只要有一种情况是true,那么就返回true;)

思路:这道题如果做过之前的那道
Implement Trie (Prefix Tree) 实现字典树(前缀树)的话就没有太大的难度了,因为这道题里面'.'可以代替任意字符,所以一旦有了'.',就需要查找之前存下的所有下一层的不是null的path;String match 的题,一般都是DFS 参数里面加入index,然后递归 subproblem求解;

class WordDictionary {private class TrieNode {public TrieNode[] children;public boolean isword;public String word;public TrieNode() {this.children = new TrieNode[26];this.isword = false;this.word = null;}}private class Trie {public TrieNode root;public Trie() {this.root = new TrieNode();}public void insert(String word) {TrieNode cur = root;for(int i = 0; i < word.length(); i++) {char c = word.charAt(i);if(cur.children[c - 'a'] == null) {cur.children[c - 'a'] = new TrieNode();}cur = cur.children[c - 'a'];}cur.isword = true;cur.word = word;}public boolean search(String word) {return ismatch(word, 0, root);}private boolean ismatch(String word, int index, TrieNode cur) {if(index == word.length()) {return cur.isword;}char c = word.charAt(index);if(c == '.') {for(int i = 0; i < 26; i++) {if(cur.children[i] != null) { // 搜索存储的,下一层所有不是null的path;if(ismatch(word, index + 1, cur.children[i])) {return true;}}}return false;} else {if(cur.children[c - 'a'] == null) {return false;} else {return ismatch(word, index + 1, cur.children[c - 'a']);}}}}/** Initialize your data structure here. */private Trie trie;public WordDic

这篇关于Trie 类型的题目总结的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1136277

相关文章

IDEA如何将String类型转json格式

《IDEA如何将String类型转json格式》在Java中,字符串字面量中的转义字符会被自动转换,但通过网络获取的字符串可能不会自动转换,为了解决IDEA无法识别JSON字符串的问题,可以在本地对字... 目录问题描述问题原因解决方案总结问题描述最近做项目需要使用Ai生成json,可生成String类型

Python中实现进度条的多种方法总结

《Python中实现进度条的多种方法总结》在Python编程中,进度条是一个非常有用的功能,它能让用户直观地了解任务的进度,提升用户体验,本文将介绍几种在Python中实现进度条的常用方法,并通过代码... 目录一、简单的打印方式二、使用tqdm库三、使用alive-progress库四、使用progres

Mysql 中的多表连接和连接类型详解

《Mysql中的多表连接和连接类型详解》这篇文章详细介绍了MySQL中的多表连接及其各种类型,包括内连接、左连接、右连接、全外连接、自连接和交叉连接,通过这些连接方式,可以将分散在不同表中的相关数据... 目录什么是多表连接?1. 内连接(INNER JOIN)2. 左连接(LEFT JOIN 或 LEFT

Redis的Hash类型及相关命令小结

《Redis的Hash类型及相关命令小结》edisHash是一种数据结构,用于存储字段和值的映射关系,本文就来介绍一下Redis的Hash类型及相关命令小结,具有一定的参考价值,感兴趣的可以了解一下... 目录HSETHGETHEXISTSHDELHKEYSHVALSHGETALLHMGETHLENHSET

Android数据库Room的实际使用过程总结

《Android数据库Room的实际使用过程总结》这篇文章主要给大家介绍了关于Android数据库Room的实际使用过程,详细介绍了如何创建实体类、数据访问对象(DAO)和数据库抽象类,需要的朋友可以... 目录前言一、Room的基本使用1.项目配置2.创建实体类(Entity)3.创建数据访问对象(DAO

Python中异常类型ValueError使用方法与场景

《Python中异常类型ValueError使用方法与场景》:本文主要介绍Python中的ValueError异常类型,它在处理不合适的值时抛出,并提供如何有效使用ValueError的建议,文中... 目录前言什么是 ValueError?什么时候会用到 ValueError?场景 1: 转换数据类型场景

Java向kettle8.0传递参数的方式总结

《Java向kettle8.0传递参数的方式总结》介绍了如何在Kettle中传递参数到转换和作业中,包括设置全局properties、使用TransMeta和JobMeta的parameterValu... 目录1.传递参数到转换中2.传递参数到作业中总结1.传递参数到转换中1.1. 通过设置Trans的

C# Task Cancellation使用总结

《C#TaskCancellation使用总结》本文主要介绍了在使用CancellationTokenSource取消任务时的行为,以及如何使用Task的ContinueWith方法来处理任务的延... 目录C# Task Cancellation总结1、调用cancellationTokenSource.

C# dynamic类型使用详解

《C#dynamic类型使用详解》C#中的dynamic类型允许在运行时确定对象的类型和成员,跳过编译时类型检查,适用于处理未知类型的对象或与动态语言互操作,dynamic支持动态成员解析、添加和删... 目录简介dynamic 的定义dynamic 的使用动态类型赋值访问成员动态方法调用dynamic 的

HarmonyOS学习(七)——UI(五)常用布局总结

自适应布局 1.1、线性布局(LinearLayout) 通过线性容器Row和Column实现线性布局。Column容器内的子组件按照垂直方向排列,Row组件中的子组件按照水平方向排列。 属性说明space通过space参数设置主轴上子组件的间距,达到各子组件在排列上的等间距效果alignItems设置子组件在交叉轴上的对齐方式,且在各类尺寸屏幕上表现一致,其中交叉轴为垂直时,取值为Vert