码迷,mamicode.com
首页 >  
搜索关键字:include    ( 84546个结果
后缀排序模板
题链 sa $sa[i]$表示排名$i$的开头 $rk[i],x[i]$表示$i$后缀所在的排名 $y[i]$表示的第二段排名为$i$的开头 $c[i]$为桶 倍增 #include<bits/stdc++.h> using namespace std; const int N=1e5+5; int ...
分类:编程语言   时间:2021-03-02 12:00:38    阅读次数:0
Json序列化的总结
一、jackSon中@JsonInclude注解详解 JsonJsonInclude.Include.ALWAYS 这个是默认策略,任何情况下都序列化该字段,和不写这个注解是一样的效果。JsonJsonInclude.Include.NON_NULL这个最常用,即如果加该注解的字段为null,那么就 ...
分类:Web程序   时间:2021-03-02 11:53:13    阅读次数:0
Trie字典树
字典树存储字符串,查找方便,迅速; 基本思想就是建立一棵树,每一层都有26个节点(对应26个字母),如果这个字符没有的话就占位,有就通过这个节点向下一层建树 Trie树例题 #include <iostream> #include <cstdio> using namespace std; cons ...
分类:其他好文   时间:2021-03-02 11:47:03    阅读次数:0
【Apache】Rewrite模块
加载模块 在httpd.conf文件里使下面模块生效: LoadModule ssl_module modules/mod_ssl.so # 如果使用https证书,这个模块功能一定要打开! LoadModule rewrite_module modules/mod_rewrite.so # 重写模 ...
分类:Web程序   时间:2021-03-01 14:13:40    阅读次数:0
最短路
一、单源最短路径 1.朴素Dijkstra算法 #include <bits/stdc++.h> using namespace std; const int N = 1000; //数组g为邻接矩阵用于存放权值, 数组dis[i]表示起点到节点i的距离, n代表点的个数, m代表边的个数 int ...
分类:其他好文   时间:2021-03-01 13:48:57    阅读次数:0
NXOpen 一键移除参数
C++ 2010 #include <uf.h>#include <uf_object_types.h>#include <uf_obj.h>#include <uf_modl.h>#include <uf_assem.h>#include <uf_kf.h>#include <uf_ui.h>#i ...
分类:其他好文   时间:2021-03-01 13:43:29    阅读次数:0
并查集
#include <bits/stdc++.h> using namespace std; const int N = 1000; int n; int p[N + 1], s[N + 1]; //数组p用于存储祖先节点,数组s用于存储当前祖先节点下并查集的元素个数 //并查集初始化, 给所有祖先节 ...
分类:其他好文   时间:2021-03-01 13:35:27    阅读次数:0
省选测试32
A 跑步 题目大意 : * Code Show Code #include <cstdio> #include <algorithm> using namespace std; const int N = 2005; int read(int x = 0, int f = 1, char c = g ...
分类:其他好文   时间:2021-03-01 13:16:23    阅读次数:0
省选前的数据结构和字符串训练合编
虚树 [SDOI2011]消耗战 板题,基本上是对着网上的板子敲的 #include <bits/stdc++.h> using namespace std; inline int read() { int out = 0; register char cc = getchar(); while ( ...
分类:其他好文   时间:2021-03-01 12:59:52    阅读次数:0
ansible when条件语句用法
ansible when条件语句用法 参考 基本用法 - hosts: all tasks: - include: Ubuntu.yml when: ansible_os_family == "Ubuntu" - include: RHEL.yml when: ansible_os_family = ...
分类:其他好文   时间:2021-02-27 13:41:18    阅读次数:0
84546条   上一页 1 ... 63 64 65 66 67 ... 8455 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!