代码:/*@desc:php密码加盐函数@parampass原密码@paramsalt盐@returnret加密后的密码*/functionpasssalt($pass,$salt){$len=mb_strlen($pass);$str1=mb_substr($pass,0,5);$str2=mb_substr($pass,$len-5,5);$ret=md5($str1.$salt.$str2)
分类:
Web程序 时间:
2018-06-17 15:12:22
阅读次数:
554
#include #include struct bign { int d[21], len; bign() { memset(d, 0, sizeof(d)); len = 0; } }; bign change(char str[]) { bign a; a.len = strlen(str);... ...
分类:
其他好文 时间:
2018-06-16 18:43:04
阅读次数:
116
#include #include struct bign { int d[1010], len; bign() { memset(d, 0, sizeof(d)); len = 0; } }; bign change(char str[]) { bign a; a.len = strlen(str... ...
分类:
其他好文 时间:
2018-06-16 17:09:08
阅读次数:
138
地址https://www.codechef.com/LTIME58B?order=desc&sortBy=successful_submissions 简单做了一下,前三题比较水,第四题应该算是经典题 AChef and Friends 直接暴力枚举即可 #include<cstdio> #inc ...
分类:
其他好文 时间:
2018-06-14 18:35:59
阅读次数:
204
查看yii2底层源码, 发现 mb_strlen($str, '8bit') , 此函数的不是PHP的核心函数, 所以需要开启对应的扩展. 函数第一个参数是string类型, 第二个参数是个编码字符集, 比如: utf-8, gbk, unicode 等. '8bit' 是属于什么字符集? 其实8b ...
分类:
Web程序 时间:
2018-06-13 18:06:03
阅读次数:
161
strlen strcat strcpy strcmp 自己实现 strlen strcat strcpy ...
分类:
其他好文 时间:
2018-06-12 23:32:22
阅读次数:
348
用双引号定义并且声明的时候明确指定数组大小的话,sizeof就会返回指定的大小,不会自动加1; 用大括号定义并且声明的时候明确指定数组大小的话,sizeof就会返回指定的大小,不会自动加1; 用双引号定义并且声明的时候没有明确指定数组大小的话,sizeof就会是实际的大小+1;strlen也正常 用 ...
分类:
其他好文 时间:
2018-06-12 17:43:00
阅读次数:
179
[JSOI2007]字符加密 题目大意: 给定一个长度为$n(n\le10^6)$的字符串$s$。对于$i\in[1,n)$,将$i$与$i+1$之间断开并交换分开的两段可以得到一个新的字符串。将$s$和所有这些新的字符串排序后,按顺序输出每个字符串最后一个字符。 思路: 将原串复制两遍构造后缀数组 ...
分类:
Web程序 时间:
2018-06-12 16:19:45
阅读次数:
183
1、模拟实现Strlen函数 a#include<stdio.h> b、运用函数递归来实现 c、用计数器方法实现 ...
分类:
其他好文 时间:
2018-06-10 15:33:00
阅读次数:
204
function ccStrLen($str) #计算中英文混合字符串的长度 { $ccLen=0; $ascLen=strlen($str); $ind=0; $hasCC=ereg("[xA1-xFE]",$str); #判断是否有汉字 $hasAsc=ereg("[x01-xA0]",$str ...
分类:
Web程序 时间:
2018-06-09 22:12:21
阅读次数:
296