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]; } }; ```
查看全文
相关阅读:
NSRunloop-基本概念
GCD—NSThread-多线程的基本用法
NSURLConnection-网络访问(同步异步)
ASIHttpRequest网络使用框架
XML与JSON解析
iOS 设置系统音量和监听系统音量变化
iOS_字典数组 按key分组和排序
iOS 自定义字体设置
日期选择和输入弹框
iOS 耳机线控
原文地址:https://www.cnblogs.com/orangee/p/9090287.html
最新文章
Mysql学习总结(40)——MySql之Select用法汇总
NSString的形式--可变字符串--减方法Delete
NSString的形式--可变字符串--查方法
NSString从父字符串提取子字符串
NSString的形式--可变字符串--增方法Append
NSString的创建方法(二)
NSString的创建方法(一)
NSString的大小比较方法(二)
NSString的长度比较方法(一)
普通类型的归档方法
热门文章
修复bug的12个关键步骤:
理解 Objective-C Runtime 中文版
Swift编程语言中文版教程---《The Swift Programming Language》中文版
NSObject的performSelector: withObject: withObject:使用简介
NSObject中的performSelector:withObject用法简介
NSObject中的performSelector用法简介
Objective-C语言中的Block简介以及用法.
Objective-C中的@property和@synthesize用法
Objective-C的第二课
Objective-C的第一课
Copyright © 2011-2022 走看看