会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Andromeda_Galaxy
博客园
|
首页
|
新随笔
|
新文章
|
联系
|
订阅
|
管理
2018年8月8日
字典的建立 查找
摘要: hdu 1251 c++ #include<iostream>#include<string.h>using namespace std;struct node{ node *next[26]; int cnt; node() { cnt=0; memset(next,0,sizeof(next))
阅读全文
posted @ 2018-08-08 16:55 Andromeda_Galaxy
阅读(118)
评论(0)
推荐(0)
编辑
字典序大小
摘要: 在c++里 string 是支持字典序排序的 可以通过字典序比较大小 相同长度的字符串 直接会找到 第一个不同的字符 谁大谁就大; 对于长度不同的字符串 也是这样比较的
阅读全文
posted @ 2018-08-08 15:17 Andromeda_Galaxy
阅读(3710)
评论(0)
推荐(0)
编辑
头文件模板
摘要: #include #define int long long #define MAX(a,b,c) max(a,max(b,c)) #define MIN(a,b,c) min(a,min(b,c)) #define pb push_back #define fi first #define se second typedef long long ll; typedef long long LL...
阅读全文
posted @ 2018-08-08 08:10 Andromeda_Galaxy
阅读(125)
评论(0)
推荐(0)
编辑
公告