Longest Common Prefix Write a function to find the longest common prefix string amongst an array of strings. 求最长公共前缀。 代码例如以下: class Solution { public: ...
分类:
其他好文 时间:
2017-07-30 12:37:55
阅读次数:
138
Given a binary array, find the maximum number of consecutive 1s in this array. Example 1: Note: The input array will only contain 0 and 1. The length ...
分类:
其他好文 时间:
2017-07-28 12:51:18
阅读次数:
147
A sequence of number is called arithmetic if it consists of at least three elements and if the difference between any two consecutive elements is the ...
分类:
其他好文 时间:
2017-07-28 11:05:30
阅读次数:
133
考虑了多种方法, 还是得遍历, 不过可以借助hashSet ...
分类:
其他好文 时间:
2017-07-26 23:41:18
阅读次数:
187
https://leetcode.com/problems/longest-substring-without-repeating-characters/#/description Given a string, find the length of the longest substring wi ...
分类:
其他好文 时间:
2017-07-26 00:11:30
阅读次数:
108
Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000. Example: Example: Similar Question ...
分类:
其他好文 时间:
2017-07-25 14:21:47
阅读次数:
130
https://leetcode.com/problems/longest-palindromic-substring/#/description Given a string s, find the longest palindromic substring in s. You may assum ...
分类:
其他好文 时间:
2017-07-24 23:36:23
阅读次数:
153
LeetCode 第 3 题(Longest Substring Without Repeating Characters) Given a string, find the length of the longest substring without repeating characters. ...
分类:
其他好文 时间:
2017-07-24 10:08:10
阅读次数:
168
Compare two version numbers version1 and version2.If version1 > version2 return 1, if version1 < version2 return -1, otherwise return 0. You may assum ...
分类:
其他好文 时间:
2017-07-23 12:37:40
阅读次数:
145
近期研究了android应用增量升级的应用。当中用到了android NDK编程,先说下为什么要使用增量升级。当我们的应用达到一定大小的时候,比方眼下有30M。假设新版本号35M仅仅是添加了几个功能,而之前都保持不变,那么这个时候我们能够生成一个差分包,这个差分包一般就6M左右大小,大大的为用户节省 ...
分类:
其他好文 时间:
2017-07-23 11:35:36
阅读次数:
270