1 #include 2 #include 3 #include 4 5 void left_rotate(char *str, int k) 6 { 7 int len=strlen(str); 8 k %= len;//减少重复次数 9 10 char temp = 0; 11 char *cu... ...
分类:
编程语言 时间:
2018-11-10 23:54:20
阅读次数:
204
getshell不用英文字母和数字 上代码 实际代码没有echo strlen($code);我测试的时候加上去的 思路是eval执行getFlag函数。 过滤了字母和数字,长度得小于40 直接看payload吧: ?code=$_="`{{{"^"?/";${$_} "_" ;&_=getFlag ...
分类:
系统相关 时间:
2018-11-10 22:43:10
阅读次数:
274
一、实践题目 7-3 编辑距离问题 题目描述:用最少的操作将字符串A转化成字符串B,其中操作包括三种。 (1)删除一个字符; (2)插入一个字符; (3)将一个字符改为另一个字符。 样例1: 题目分析: 此题用动态规划的做法,首先需要定义F(i,j),表示长度为i的字符串A 转化为长度为j的字符串B ...
分类:
编程语言 时间:
2018-11-10 18:06:35
阅读次数:
135
字符统计2 Time Limit: 1000 ms Memory Limit: 65536 KiB Submit Statistic Discuss Problem Description 输入英文句子,输出该句子中除了空格外出现次数最多的字符及其出现的次数。 输入英文句子,输出该句子中除了空格外出 ...
分类:
其他好文 时间:
2018-11-09 17:13:51
阅读次数:
139
// 反转字符串//eg 1 循环字符串从后向前输出$str = "what is you name !";FanZ2($str);function FanZ($str){ $length = strlen($str); $newstr = ""; for($i=1; $i <= $length; ...
分类:
编程语言 时间:
2018-11-06 17:48:03
阅读次数:
157
/** * api 加密接口,轻量级加密算法 */function erp_api_encrypt($string) { $encryptKey = md5('TPs1#)8!6'); $keyLen = strlen($encryptKey); $data = substr(md5($string ...
分类:
其他好文 时间:
2018-11-05 12:53:42
阅读次数:
213
字符串 知识点 AC自动机 把多个串插入一个自动机里进行匹配,其实建好的是Trie图 cpp void Add(char s,int op) { int x=0,len=strlen(s+1); for(int i=1;i ...
分类:
其他好文 时间:
2018-11-04 15:39:26
阅读次数:
180
Codeforces Round 519 by Botan Investments A. Elections c++ include typedef long long ll; const int N = 3e5 + 7; const int mod = 1e9 + 7; using namespa ...
分类:
其他好文 时间:
2018-11-02 21:44:57
阅读次数:
120
今天终于写完了高精真开心 热烈欢迎大家Hack 提供数据 1974920121@qq.com ...
分类:
其他好文 时间:
2018-11-02 12:56:01
阅读次数:
153