Leetcode::Longest Common Prefix && Search for a Range

一次总结两道题,两道题目都比较基础

Description:Write a function to find the longest common prefix string
amongst an array of strings.

分析: 这道题目最重要的知道什么叫prefix前缀, 否则一不小心就做成了最长子序列。前缀就是两个序列的前多少位

都要是一样的,不能跳着对齐,这样就比较简单了,也可以求很多个序列的公共前缀。


 1 class Solution {
2 public:
3 string longestCommonPrefix(vector<string> &strs) {
4 string result,comm;
5 if(strs.empty()) return result;
6 result= strs[0];
7 for(int i=1;i<strs.size();i++)
8 {
9 comm = "";
10 for(int j=0;j<result.size();j++)
11 {
12 if(j>=strs[i].size()) break;
13 if(result[j]==strs[i][j]) comm.insert(comm.end(),result[j]);
14 else break;
15 }
16 result = comm;
17 }
18
19 return result;
20 }
21 };

题目二:Search for a range

Description: Given a sorted array of integers, find the starting and ending
position of a given target value.

Your algorithm‘s runtime complexity must be in the order
of O(log n).

If the target is not found in the array, return [-1,
-1]
.

For example,
Given [5, 7, 7, 8, 8, 10] and target
value 8,
return [3, 4].

分析: 要找一个排序数组的某个元素的范围,要求复杂度是O(log n),则肯定是基于二分查找。因为有重复元素,则将二分查找

的边界条件变一下就可以了。


 1 class Solution {
2 public:
3 vector<int> searchRange(int A[], int n, int target) {
4 vector<int> pos (2,-1) ;
5 if(n<=0) return pos;
6 //left bound
7 int start=0,stop = n-1,mid;
8 while(start<=stop)
9 {
10 mid = (start+stop)/2;
11 if(A[mid]==target && (mid==0 || A[mid-1]<target))
12 {
13 pos[0] = mid;
14 break;
15 }
16 else if(A[mid]<target)
17 {
18 start = mid+1;
19 }
20 else{
21 stop = mid-1;
22 }
23 }
24 if(pos[0]==-1) return pos;
25 //right bound
26 start=0,stop = n-1;
27 while(start<=stop)
28 {
29 mid = (start+stop)/2;
30 if(A[mid]==target && (mid==n-1 || A[mid+1]>target) )
31 {
32 pos[1] = mid;
33 break;
34 }
35 else if(A[mid]>target)
36 {
37 stop = mid-1;
38 }
39 else{
40 start = mid+1;
41 }
42 }
43 return pos;
44 }
45 };

Leetcode::Longest Common Prefix && Search for a
Range

时间: 2024-10-10 06:00:47

Leetcode::Longest Common Prefix && Search for a Range的相关文章

LeetCode——Longest Common Prefix

Write a function to find the longest common prefix string amongst an array of strings. 写一个函数找出字符串数组中的最长共现前缀字符串. 思路:共现,即要求数组中的所有元素的前缀中都要出现.所以所得的结果肯定是最短字符串的部分或全部或都不是,总之要以最短字符串为基准与其他字符串比较. public static String longestCommonPrefix(String[] strs){ int len

leetcode——Longest Common Prefix 最长公共前缀(AC)

Write a function to find the longest common prefix string amongst an array of strings. 其实做起来会感觉很简单,需要注意的是要考虑效率的问题,毕竟可能是很长的字符串数组,所以可以考虑选取所有字符串中最短的那个来首先进行比较,因为最长公共子串肯定不会大于其长度,这样避免了字符串之间长度差异很大造成的效率损失,然后每次比较之后最长公共子串的长度也永远不会大于最短的那个字符串,只会不变或减小,只要遍历字符串数组,挨个

LeetCode: Longest Common Prefix 题解

Write a function to find the longest common prefix string amongst an array of strings. 题解: 寻找一组字符串的最长公共前缀.  最简单的方法,用一个字符串记录当前最长的公共前缀,然后依次比较.时间复杂度: O(N). 1 class Solution { 2 public: 3 string getPrefix(string a,string b) // 辅助函数用于获取两个字符串的公共前缀 4 { 5 st

leetcode Longest Common Prefix 多个字符串的最长字串

1 public class Solution { 2 public String get(String a,String b) 3 { 4 5 if(a==""||b=="") return ""; 6 int len1=a.length(); 7 int len2=b.length(); 8 int len=len1; 9 if(len>=len2) len=len2; 10 String s=""; 11 for(

[leetcode] Longest Common Prefix @ Python

Source: https://oj.leetcode.com/problems/longest-common-prefix/ Write a function to find the longest common prefix string amongst an array of strings. Hint:   strs=['abc','ab','a'] strs=[ 'abc', 'ab', 'a', ] We can think of strs as a column length va

[LeetCode] Longest Common Prefix 字符串公有前序

Write a function to find the longest common prefix string amongst an array of strings. Hide Tags String 这是一道很简单的题目,判断输入的多个字符串的公有前序,简单的逻辑遍历查找就好. 算法流程: 判断输入的字符串数量,小于2时候做出相应返回. 获取最短字符串的长度. 设定标记flag,控制跳出循环,与长度返回的长度len. 在最短字符串长度的范围内循环. 循环中每次遍历全部字符串len 位的字

LeetCode: Longest Common Prefix 解题报告

Longest Common Prefix Total Accepted: 24665 Total Submissions: 92370 My Submissions Question Solution Write a function to find the longest common prefix string amongst an array of strings. Show Tags Have you met this question in a real interview? Yes

leetcode Longest Common Prefix 最长公共前缀 (python)

Write a function to find the longest common prefix string amongst an array of strings. class Solution: # @return a string #最长公共前缀 def longestCommonPrefix(self, strs): if strs is None or strs ==[]:return '' result ='' pre =None for cur in xrange(len(s

leetcode Longest Common Prefix 14

Longest Common Prefix Total Accepted: 47436 Total Submissions: 182575 Write a function to find the longest common prefix(前缀) string amongst an array of strings. Hide Tages String 翻译:编写一个函数去查找在字符串数组中的最长公共前缀的字符 尝试一(失败),代码如下: public static String longe