E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Chars
设计密码【状态机】【KMP】
j]:第i个位置,跳到j的方案数状态转移:第i个位置,枚举字符,KMP找到下一个字符以及位置j代码#includeusingnamespacestd;constintN=200;intf[N][N];
chars
谁是凶手1703
·
2020-09-13 19:11
动态规划
Codeforces Round #578 (Div. 2) Hotelier(模拟)+ Block Adventure(贪心)+ Round Corridor(思维)
#includeusingnamespacestd;#definelllonglongconstintmaxn=1e5+10;inta[15];
chars
[maxn];intmain(){intn;scanf
芋圆西米露
·
2020-09-13 19:49
bzoj4327
includeusingnamespacestd;structtriee{intson[4];charvalue;charstep;intfail,fa;boolisright;};trieetrie[10000020];
chars
guoshiyuan484
·
2020-09-13 18:33
ac自动机
[JSOI 2012] 玄武密码
includeusingnamespacestd;constintMAXN=1e7+10;constintMAXM=1e5+10;constintMAXLEN=110;intn,m;intans[MAXM];charP[MAXN];
chars
a576969381
·
2020-09-13 18:49
php
[BZOJ4327]JSOI2012 玄武密码(AC自动机)
指向的点也能匹配传递一下标记然后对于每一个小串再查询一下前缀最多到哪里都匹配了代码#include#include#include#include#includeusingnamespacestd;#defineN10000005inttrans[100];
chars
Clove_unique
·
2020-09-13 18:03
题解
AC自动机
省选
7-33 有理数加法 (15 分)C++
b:a;}intmain(){intMin(inta,intb);//输入的问题inta,b,c,d;
chars
1,s2,s3;cin>>a>>s1>>b;cin.get(s2);cin>>c>>s3>
ABOOMMMMM
·
2020-09-13 18:51
PTA练习
1099. 寻找字符串
如果这个字符串存在于字典当中,则输出Yes,否则输出No输入第一行一个整数n(n#include#includestructtrie{intto[27];boolbz;}tree[1000001];
chars
lazy-sheep
·
2020-09-13 17:46
题目
Trie
二分
c++Stack操作
注意题目提示,输入t后用getchar()吸收’\n’题目演练HUD1062#includeusingnamespacestd;
chars
[1000+10];intmain(){intn;cin>>n;
杀敌三百,自损八千
·
2020-09-13 17:39
C++STL
php生成唯一识别码uuid
/*生成唯一标志*标准的UUID格式为:xxxxxxxx-xxxx-xxxx-xxxxxx-xxxxxxxxxx(8-4-4-4-12)*/functionuuid(){$
chars
=md5(uniqid
weixin_30278311
·
2020-09-13 16:18
自然图像里的文本检测 数据库 网址收集
http://www.ee.surrey.ac.uk/CVSSP/demos/
chars
74k/Char74kdatasetInthisdataset,symbolsusedinbothEnglishandKannadaareavailable.IntheEnglishlanguage
PParis
·
2020-09-13 16:50
自然图像中的文本识别
dataset
text
localization
natural
image
CCF 201903-2 二十四点 (100)(数组)
include#includeusingnamespacestd;intmain(){intn;cin>>n;while(n--){intnum[4],i,j;charop[3];doublegg=0;
chars
末多末
·
2020-09-13 16:29
CCF
一个经典的问题的思考: strcpy覆盖内存
转自:http://m.blog.csdn.net/shanchangyi/article/details/52058501#include#includeintmain(void){
chars
[]="
YinJianxiang
·
2020-09-13 15:55
C
总结
C语言--指针数组大小
,"Hi,goodmorning.","Helloworld"};
chars
[80];printf("size%d\n",sizeof(char[3]));//printf("size%d\n",sizeof
weixin_30347335
·
2020-09-13 14:36
[C#新手入门十] 如何判断一个字符串中值不包含字母,数字和“_”
逐个判断ASCII值stringstr="哈哈123gf";char[]
chars
=str.ToCharArray();foreach(charchrinchars){//表示大写字母A(65)-Z(90
xiangcns
·
2020-09-13 14:26
.NET
最长对称子字符串
#include#includeintmain(){inti,j,count=0,max=0,len=0;
chars
[1001]={'\0'};gets(s);len=strlen(s);//向两边扩展
姚希瑶
·
2020-09-13 12:29
51nod 1182完美字符串
Input输入一个字符串S(S的长度 #include#include#include#include#includeusingnamespacestd;
chars
[10005];intb[500];intcmp
溪苏
·
2020-09-13 12:42
ACM
LCS长度个数计算
,B,求出他们最长的公共子串C意思是:C既是A的子串,又是B的子串求法先给出代码:#definemod1000000007#defineN5010intn,m,f[N][N],h[N][N],ans;
chars
1
hhuhao
·
2020-09-13 12:36
LCS
DP
模板
最长公共子序列问题 (LCS问题)(动态规划)
)=LCS(m-1,n)elsemax(LCS(m-1,n),LCS(m,n-1))代码:#include#include#includeintd[1000][1000]={0},len1,len2;
chars
1
IT越野者
·
2020-09-13 10:19
数据结构--经典问题求解
数据结构--经典问题求解
找出字符串中最长的对称字符串
publicstaticStringreverseStr(Stringstr){char[]
chars
=str.toCharArray();StringBuffersb=newStringBuffer(
afei2530
·
2020-09-13 10:22
23. 编写函数:从num各字符串中找出最长的一个字符串,并通过形参指针max传回该串地址。
intnum,char**max){inti=0;*max=a[0];for(i=0;i
chars
UncleJokerly
·
2020-09-13 07:43
笔记
lcp计数 (Trie)
include#include#include#defineN1000005#defineLLlonglongusingnamespacestd;intn,rot,cnt;intc[N][26],sum[N];
chars
w4149
·
2020-09-13 06:34
—————练习赛—————
Trie
—————妙题—————
7gOJ
uoj#9【UTR #1】vfk的数据
所以直接比字符串就好#include#include#include#include#include#include#include#includeusingnamespacestd;intn;structdata{
chars
mzajt123
·
2020-09-13 05:56
乱搞
uoj
使用python生成固定长度的随机字符串
fromrandomimportRandomdefrandom_str(randomlength=8):str=''
chars
='AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz0123456789
epic2005
·
2020-09-13 05:05
python
什么是空指针
#includestructstr{intlen;
chars
[0];};structfoo{structstr*a;};in
王凯_光谷
·
2020-09-13 05:05
C
C
NULL
空指针
华为研发工程师——进制转换
输入例子1:0xA输出例子1:10假题#include#include#include#includeusingnamespacestd;intn,t,temp;
chars
[1000];longlongsum
hg_zhh0427
·
2020-09-13 05:21
公司笔试
Hahs+LCP(最长公共前缀) - UvaL 4513
数据范围:|s|#include#include#include#defineullunsignedlonglongusingnamespacestd;constintmaxn=4e4+100;
chars
Exchan
·
2020-09-13 05:48
hdu 1877 又一版 A+B (水)
点击打开链接PS:wrong了一次,没注意0+0的情况,本题为简单的进制转换#include#includeintmain(){inta,b,m,k;
chars
[222];while(scanf("%d
slege
·
2020-09-13 04:21
ACM
数据结构之串
另加*/voidInitString(HString*T){(*T).length=0;(*T).ch=NULL;}/*生成一个其值等于串常量
chars
的串T*/intStrAssign(HString
yuanyuanprince
·
2020-09-13 04:14
数据结构
将一个字符串进行反转。将字符串中指定部分进行反转。比如“abcdefg”反 转为”abfedcg”
=null){char[]
chars
=str.toCharArray();for(inti=begindex,j=endInd
「已注销」
·
2020-09-13 03:42
assignment makes pointer from integer without a cast(C语言头文件)
(未经声明的函数原型一律默认为返回int值)不要忽视Warning错误以下代码在CodeBlock中可以正常编译执行#include#include//#includeintmain(){
chars
[]
Galaxy_hao
·
2020-09-13 03:27
C/C++
hdu 1062 Text Reverse
pid=1062#include#includeintmain(){intT;scanf("%d",&T);getchar();while(T--){
chars
[1010];gets(s);intlen
myhzgl1993
·
2020-09-13 03:06
将合法 C 源程序每行前加上行号并删除其所有注释
#include#include#includeintmain(void){
chars
1[199],row_number[4];intn,i,j,count,k;FILE*fp1,*fp2,*fp3;if
dumpling-cat
·
2020-09-13 02:40
c
HDU1877 又一版 A+B【进制】
TotalSubmission(s):17619AcceptedSubmission(s):6915ProblemDescription输入两个不超过整型定义的非负10进制整数A和B(voidreverse(
chars
海岛Blog
·
2020-09-13 00:37
#
ICPC-备用二
#
ICPC-进制与分数
#
ICPC-HDU
ACM研究生复试机考
实现Caesar密码(加法密码)加解密
加密过程的明文和密钥可以是任意按键输入的小写英文字母;解密过程的密文和密钥可以是任意按键输入的小写字母2.给出.cpp文件源代码和加解密结果#includeusingnamespacestd;voidmain(){intk;charc;intm,n;
chars
qq_14858923
·
2020-09-13 00:02
c
hdu1877 又一版 A+B
#include#include#includeusingnamespacestd;intmain(){intA,B,m;
chars
[1005];while(cin>>m,m){cin>>A>>B;memset
Flynn_curry
·
2020-09-13 00:12
hdu
NYOJ770 仿射密码
其加密变换如下:E(m)=(k1*m+k2)modq;(其中k1,k2为密钥,且0#includeintmain(){
chars
[105];intk1,k2;while(~scanf("%s%d%d",
iwi_ac
·
2020-09-13 00:21
Codeforces Round #293 (Div.2) 小记
#include#include#include#include#include#include#include#includeusingnamespacestd;typedeflonglongll;
chars
hadis_fukan
·
2020-09-12 23:58
codeforces
dp
HDU——6015 Skip the Class
include#include#include#include#include#include#includeusingnamespacestd;#definelllonglongstructnode{
chars
ZMST
·
2020-09-12 23:20
hdu
找出字符串中连续的子字符
publicclassStringUtil{publicstaticString[]lxString(Stringstr){char[]
chars
=str.toCharArray();Listlist=
jone_code
·
2020-09-12 21:04
java
LeetCode——1160.拼写单词
给你一份『词汇表』(字符串数组)words和一张『字母表』(字符串)
chars
。假如你可以用
chars
中的『字母』(字符)拼写出words中的某个『单词』(字符串),那么我们就认为你掌握了这个单词。
左耳依然izk
·
2020-09-12 21:16
LeetCode
字符串
leetcode
算法
c语言中数组名和指针变量的区别
例题:
chars
[]="Howbigisit?";char*t=s;//正确,将数组的地址赋给指针变量ts=t
weixin_34186931
·
2020-09-12 20:52
C语言中对文件的中文内容进行读出
#include"stdio.h"#include"stdlib.h"intmain(void){
chars
[1000],ch;FILE*fp;inti=0;if((fp=fopen("awe.txt"
予介
·
2020-09-12 20:59
c语言之文件输入输出
if-else if执行顺序
#include"stdio.h"intmain(){
chars
[100],c;inti,num,word;while(1){printf("请输入一行英文:");gets(s);num=0,word=
AlandyFeng
·
2020-09-12 14:34
原创
探究篇
base64的隐写,烧脑
原理参考大佬的:https://www.tr0y.wang/2017/06/14/Base64steg/解密脚本如下,写道一个txt名字是base:为python2的脚本,可以b64
chars
='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789
h3zh1
·
2020-09-12 11:57
比较字符串字典序的三种方法【C++】
#includeusingnamespacestd;intmain(){
chars
1[2]="a";
chars
2[2]="b";cout#includeusingnamespace
J先生的编程笔记
·
2020-09-12 09:09
ACM
c++
字符串
字典序
C语言程序变位词
include#include#include#defineM100#defineN20intmain(intargc,constchar*argv[]){FILE*fp;charfileName[N];
chars
honeylife
·
2020-09-12 09:22
变位词
C语言
2019考题
9-7贝壳笔试,4题AK
intcheck(
chars
,chart){if(s=='
退役要恰饭
·
2020-09-12 08:10
算法
HDU1241 求联通块个数(DFS)
代码:#include#include#include#include#includeusingnamespacestd;constintmaxn=105;
chars
[maxn][maxn];in
总想玩世不恭
·
2020-09-12 08:27
暴力
搜索与递归
题目1003:A+B
#include#includelongstoi(
chars
[]){longcount=0;inti;for(i=0;i='0'&&s[i]<='9')count=count*10+s[i]-'0';}
yangchen1991
·
2020-09-12 08:31
九度OJ
c
C、C++中如何实现以一个空行代表输入的结束
首先,我们要用到gets()函数,头文件为其次就是方法了:
chars
[15];while(gets(s)){if(s[0]=='\0')break;//gets函数如果读取了换行符会将其自动转换成字符串结束符
风去幽墨
·
2020-09-12 08:13
小技巧
上一页
19
20
21
22
23
24
25
26
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他