
公共前缀
文章平均质量分 74
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 201. Bitwise AND of Numbers Range(范围内所有数值的比特与)
原题网址:https://leetcode.com/problems/bitwise-and-of-numbers-range/ Given a range [m, n] where 0 For example, given the range [5, 7], you should return 4. 思路:总体思路就是求出m和n的高位比特的公共前缀。 方法一:变动前缀本身。原创 2016-05-04 05:21:07 · 444 阅读 · 0 评论 -
LeetCode 14. Longest Common Prefix(最长公共前缀)
原题网址:https://leetcode.com/problems/longest-common-prefix/ Write a function to find the longest common prefix string amongst an array of strings. 方法一:暴力求解。 public class Solution { public Strin原创 2016-05-19 05:51:55 · 714 阅读 · 0 评论