码迷,mamicode.com
首页 >  
搜索关键字:longest palindromic    ( 2914个结果
[LeetCode] 525. Contiguous Array
连续数组。给定一个二进制数组, 找到含有相同数量的 0 和 1 的最长连续子数组的长度。例子, Example 1: Input: [0,1] Output: 2 Explanation: [0, 1] is the longest contiguous subarray with equal nu ...
分类:其他好文   时间:2020-04-14 10:32:28    阅读次数:77
【LeetCode-字符串】最长公共前缀
题目描述 编写一个函数来查找字符串数组中的最长公共前缀。 如果不存在公共前缀,返回空字符串 ""。 示例 题目链接: https://leetcode cn.com/problems/longest common prefix/ 思路1 首先找到最短的字符串,然后遍历最短的字符串,将当前位和其余字符 ...
分类:其他好文   时间:2020-04-12 18:15:14    阅读次数:58
leetcode 300 最长上升子序列
地址:https://leetcode cn.com/problems/longest increasing subsequence/ 大意:给定一个数组,找到最长上升子序列 ` ` ...
分类:其他好文   时间:2020-04-12 07:52:21    阅读次数:78
web 部署专题(三):压力测试(一)工具 siege
1.介绍 Siege是一个压力测试和评测工具,设计用于WEB开发这评估应用在压力下的承受能力:可以根据配置对一个WEB站点进行多用户的并发访问,记录每个用户所有请求过程的相应时间,并在一定数量的并发访问下重复进行。 2.安装 Linux下安装siege wget http://download.jo ...
分类:Web程序   时间:2020-04-11 20:50:42    阅读次数:76
Longest Common Prefix 五种解法(JAVA)
解法一:水平扫描 int indexOf(String str): 在字符串中检索str,返回其第一出现的位置,如果找不到则返回-1 class Solution { public String longestCommonPrefix(String[] strs) { if(strs.length ...
分类:编程语言   时间:2020-04-09 00:43:26    阅读次数:70
14. 最长公共前缀
地址:https://leetcode-cn.com/problems/longest-common-prefix/ <?php /** * 编写一个函数来查找字符串数组中的最长公共前缀。 * * 如果不存在公共前缀,返回空字符串 ""。 * * 示例 1: * * 输入: ["flower","f ...
分类:其他好文   时间:2020-04-07 22:23:03    阅读次数:85
[LeetCode] 424. Longest Repeating Character Replacement
替换后的最长重复字符。题意是给一个字符串,只有大写字母,允许你替换其中的K个字母,问替换操作完成后能返回的最长字母相同的子串的长度是多少。例子, Example 1: Input: s = "ABAB", k = 2 Output: 4 Explanation: Replace the two 'A ...
分类:其他好文   时间:2020-04-04 09:41:15    阅读次数:68
[刷题] LeetCode 3 Longest Substring Without Repeating Character
要求 在一个字符串中寻找没有重复字母的最长子串 思路 滑动窗口 如果当前窗口没有重复字母,j右移,直到包含重复字母 i右移,直到不包含重复字母 用数组记录字母是否出现过,判断重复 实现 1 class Solution{ 2 public: 3 int lenthOfLongestSubstring ...
分类:其他好文   时间:2020-03-30 09:33:07    阅读次数:64
[LC] 647. Palindromic Substrings
Given a string, your task is to count how many palindromic substrings in this string. The substrings with different start indexes or end indexes are c ...
分类:其他好文   时间:2020-03-29 10:56:42    阅读次数:54
PTA(Advanced Level)1023.Palindromic Number
A number that will be the same when it is written forwards or backwards is known as a Palindromic Number . For example, 1234321 is a palindromic numbe ...
分类:其他好文   时间:2020-03-26 01:01:00    阅读次数:67
2914条   上一页 1 ... 10 11 12 13 14 ... 292 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!