1408. String Matching in an Array Given an array of string words. Return all strings in words which is substring of another word in any order. String ...
分类:
其他好文 时间:
2020-04-12 18:45:33
阅读次数:
75
题目描述 编写一个函数来查找字符串数组中的最长公共前缀。 如果不存在公共前缀,返回空字符串 ""。 示例 题目链接: https://leetcode cn.com/problems/longest common prefix/ 思路1 首先找到最短的字符串,然后遍历最短的字符串,将当前位和其余字符 ...
分类:
其他好文 时间:
2020-04-12 18:15:14
阅读次数:
58
地址:https://leetcode cn.com/problems/longest increasing subsequence/ 大意:给定一个数组,找到最长上升子序列 ` ` ...
分类:
其他好文 时间:
2020-04-12 07:52:21
阅读次数:
78
jdk1.6版本String.java文件中关于substring的代码及描述 1 /** 2 * Returns a new string that is a substring of this string. The 3 * substring begins with the character ...
分类:
其他好文 时间:
2020-04-11 23:50:12
阅读次数:
65
1.介绍 Siege是一个压力测试和评测工具,设计用于WEB开发这评估应用在压力下的承受能力:可以根据配置对一个WEB站点进行多用户的并发访问,记录每个用户所有请求过程的相应时间,并在一定数量的并发访问下重复进行。 2.安装 Linux下安装siege wget http://download.jo ...
分类:
Web程序 时间:
2020-04-11 20:50:42
阅读次数:
76
解法一:水平扫描 int indexOf(String str): 在字符串中检索str,返回其第一出现的位置,如果找不到则返回-1 class Solution { public String longestCommonPrefix(String[] strs) { if(strs.length ...
分类:
编程语言 时间:
2020-04-09 00:43:26
阅读次数:
70
这是因为已经改变了xxx的值的类型,不再是字符串的话将不会拥有substring函数, 我当时这样写的时候,直接将number类型赋予了this.enter,所以导致了错误. 改为这样之后可以使用substring函数 得出结果:如果不能获取变量类型操作,有可能是因为变量类型并不是我所期待的变量类型 ...
分类:
其他好文 时间:
2020-04-08 19:26:20
阅读次数:
259
//转换为标准时区格式 2017-06-08T10:41:06+08:00 转换为2017-06-08T10:41:06+0800 String strValue = timeStr.substring(0, timeStr.lastIndexOf(":")) + timeStr.substring ...
分类:
其他好文 时间:
2020-04-07 22:44:03
阅读次数:
195
地址:https://leetcode-cn.com/problems/longest-common-prefix/ <?php /** * 编写一个函数来查找字符串数组中的最长公共前缀。 * * 如果不存在公共前缀,返回空字符串 ""。 * * 示例 1: * * 输入: ["flower","f ...
分类:
其他好文 时间:
2020-04-07 22:23:03
阅读次数:
85