The repetition number of a string is defined as the maximum number R such that the string can be partitioned into R same consecutive substrings. For e ...
分类:
编程语言 时间:
2019-07-12 16:59:00
阅读次数:
108
// 返回上次浏览位置 $(function () { var str = window.location.href; str = str.substring(str.lastIndexOf("/") + 1); if ($.cookie(str)) { $("html,body").animate... ...
分类:
移动开发 时间:
2019-07-11 14:06:21
阅读次数:
223
substring_index(str,delim,count) str:要处理的字符串 delim:分隔符 count:计数 例子:str=www.baidu.com substring_index(str,'.',1) 结果是:www substring_index(str,'.',2) 结果是 ...
分类:
数据库 时间:
2019-07-06 17:33:24
阅读次数:
101
今天做的最多的事情就是纠错了,通过添加输出语句判断错误来源; 找到错误来源: wb = new XSSFWorkbook(input);//语句创建错误 网上查询发现是jar包的问题; 下图为poi的jar包各个用途:(本人需要的是excel) ...
分类:
其他好文 时间:
2019-07-06 17:31:22
阅读次数:
101
题目: 给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度。 示例 1: 输入: "abcabcbb"输出: 3 解释: 因为无重复字符的最长子串是 "abc",所以其长度为 3。 示例 2: 采用哈希表法:设定左右双指针l和r,遍历字符串;哈希表存储某字符s[i]最新在字符串中出现的位 ...
分类:
编程语言 时间:
2019-07-05 19:33:52
阅读次数:
197
<shiro:hasPermission name="modular:to_edit or modular:delete"> </shiro:hasPermission> <shiro:hasPermission name="modular:to_edit or modular:delete"> < ...
分类:
Web程序 时间:
2019-07-05 17:59:17
阅读次数:
823