编写一个函数来查找字符串数组中的最长公共前缀。 如果不存在公共前缀,返回空字符串 ""。 示例 1: 示例 2: 说明: 所有输入只包含小写字母 a-z 。 代码: 编写一个函数来查找字符串数组中的最长公共前缀。 如果不存在公共前缀,返回空字符串 ""。 示例 1: 示例 2: 说明: 所有输入只包 ...
分类:
其他好文 时间:
2019-06-02 14:15:20
阅读次数:
107
链接:https://ac.nowcoder.com/acm/contest/908/G 题意: A palindrome is a symmetrical string, that is, a string read identically from left to right as well a ...
分类:
其他好文 时间:
2019-06-01 19:32:05
阅读次数:
108
[LeetCode] Longest Substring Without Repeating Characters 最长无重复字符的子串 Given a string, find the length of the longest substring without repeating charac ...
分类:
编程语言 时间:
2019-05-30 01:18:05
阅读次数:
106
[LeetCode] 5. Longest Substring Without Repeating Characters Given a string s, find the longest palindromic substring in s. You may assume that the ma ...
分类:
其他好文 时间:
2019-05-29 16:30:47
阅读次数:
86
一、题目 1、审题 2、分析 给出一个字符串。求其切割的子串中,有多少个回文子串。 二、解答 ① 从第一个字符依次向前遍历。 ② 分为奇数和偶数个字符进行回文判断的情况。 若为奇数个字符,采用指针left、right 指向当前字符。且left 向左移动同时 right 向右移动。每一栋一步进行判断。 ...
分类:
其他好文 时间:
2019-05-27 13:19:23
阅读次数:
83
给定一个字符串数组,找出数组中所有元素共同的最大前缀。
分类:
编程语言 时间:
2019-05-27 00:52:43
阅读次数:
180
647. 回文子串 647. Palindromic Substrings 题目描述 给定一个字符串,你的任务是计算这个字符串中有多少个回文子串。 具有不同开始位置或结束位置的子串,即使是由相同的字符组成,也会被计为是不同的子串。 LeetCode647. Palindromic Substring ...
分类:
其他好文 时间:
2019-05-26 17:48:01
阅读次数:
108
14. 最长公共前缀 14. Longest Common Prefix 题目描述 编写一个函数来查找字符串数组中的最长公共前缀。 如果不存在公共前缀,返回空字符串 ""。 LeetCode14. Longest Common Prefix 示例 1: 输入: ["flower","flow","f ...
分类:
其他好文 时间:
2019-05-25 17:04:40
阅读次数:
113
128. Longest Consecutive Sequence Given an unsorted array of integers, find the length of the longest consecutive elements sequence. Your algorithm sh ...
分类:
Web程序 时间:
2019-05-24 00:58:51
阅读次数:
143