zoukankan
html css js c++ java
字典树与01字典树
之前在做一道关于字符串匹配的题时,用到了[字典树](https://www.cnblogs.com/orangee/p/8912971.html),但那时是用指针实现的,这次又遇到需要使用字典树这一结构的题,向学姐要了她的板子,学习了用数组实现的方法,对于解题而言,更为简短快速。 因为题目要求最大异或和,因此用的是01字典树,在字典树的基础上稍作修改。 以下为字典树和01字典树的普遍实现: 字典树 ```C++ #include
#include
using namespace std; struct Trie { static const int N = 101010 , M = 26; int node[N][M],cnt[N],root,L; //cnt记录对应节点的字符串个数 void init() { fill_n(cnt,N,0); fill_n(node[N-1],M,0); L = 0; root = newnode(); } int newnode() { fill_n(node[L],M,0); return L++; } void add(char *s) { int p = root; for(int i=0;s[i];++i) { int c = s[i] - 'a'; if(!node[p][c]) node[p][c] = newnode(); p = node[p][c]; } ++cnt[p]; } }; ``` 01字典树(可用于求异或和最大问题,long long型开64倍,int型开32倍) ```C++ #include
using namespace std; struct Trie_01 { static const int maxn=1e5+10,N = 32*maxn,M = 2; int node[N][M],value[N],rt,L; //value记录对应节点的值,用于返回 void init() { fill_n(node[N-1],M,0); fill_n(value,N,0); L = 0; rt = newnode(); } int newnode() { fill_n(node[L],M,0); return L++; } void add(int x) { int p = rt; for (int i=31;i>=0;--i) { int idx = (x>>i)&1; if (!node[p][idx]) { node[p][idx] = newnode(); } p = node[p][idx]; value[p]=min(value[p],x); } } int query(int x) { int p = rt; for (int i=31;i>=0;--i) { int idx = (x>>i)&1; if (node[p][idx^1]) p = node[p][idx^1]; else p = node[p][idx]; } return value[p]; } }; ```
查看全文
相关阅读:
Mac 安装FFMpeg 与 FFmpeg 格式转换
django channels
python3 coroutine
python中关于sql 添加参数
python导包的问题
python中的列表
django中用model生成数据库表结构
docker
博客大神地址
Bean复制的几种框架性能比较(Apache BeanUtils、PropertyUtils,Spring BeanUtils,Cglib BeanCopier)
原文地址:https://www.cnblogs.com/orangee/p/9090287.html
最新文章
list列表循环拆包
数据库sql命令
接口测试(灰盒测试)需求文档分析
bug单的提交
APP功能性测试-4
APP功能性测试-3
APP功能性测试-2
人员分工
APP功能性测试-1
App测试总结
热门文章
你好,python接口测试
记:一个简单的python+requests+unittest+HTMLTestRunner+发送邮件的自动化接口测试实例
用Python实现自动发送邮件
登录页面图片验证码获取(OCR)
解决1055
Lock版本生产者和消费者模式
Thread基础
unittest——skip、suite
UnitTest基础、测试实例
练手:requests库爬取小说,Xpath基本提取语法
Copyright © 2011-2022 走看看