给定一个字符串,找出不含有重复字符的最长子串的长度。 示例: 给定 "abcabcbb" ,没有重复字符的最长子串是 "abc" ,那么长度就是3。 给定 "bbbbb" ,最长的子串就是 "b" ,长度是1。 给定 "pwwkew" ,最长子串是 "wke" ,长度是3。请注意答案必须是一个子串, ...
分类:
其他好文 时间:
2018-07-25 01:07:16
阅读次数:
158
刷leecode有这么一道题: 给定两个大小相等的数组 A 和 B,A 相对于 B 的优势可以用满足 A[i] > B[i] 的索引 i 的数目来描述。 返回 A 的任意排列,使其相对于 B 的优势最大化。 我第一次想的是枚举法,然后超时了。 后来想了想。换了一种方法做。通过用例了。 1.首先两个数 ...
分类:
编程语言 时间:
2018-07-16 14:12:17
阅读次数:
155
69. Sqrt(x) Implement int sqrt(int x). Compute and return the square root of x, where x is guaranteed to be a non-negative integer. Since the return t ...
分类:
其他好文 时间:
2018-07-12 22:39:48
阅读次数:
152
67. Add Binary Given two binary strings, return their sum (also a binary string). The input strings are both non-empty and contains only characters 1 ...
分类:
其他好文 时间:
2018-07-12 21:49:15
阅读次数:
132
Given an unsorted array of integers, find the length of longest increasing subsequence. Example: Note: There may be more than one LIS combination, it ...
分类:
其他好文 时间:
2018-06-24 17:56:21
阅读次数:
157
58. Length of Last Word Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the ...
分类:
其他好文 时间:
2018-06-22 13:18:31
阅读次数:
139
38. Count and Say The count-and-say sequence is the sequence of integers with the first five terms as following: class Solution {public: string countA ...
分类:
其他好文 时间:
2018-06-14 14:56:37
阅读次数:
112
LeeCode初级算法的Python实现 数组 coding: utf 8 """ @Created on 2018/6/3 17:06 @author: ZhifengFang """ 排列数组删除重复项 def removeDuplicates(nums): if len(nums) 1: k ...
分类:
编程语言 时间:
2018-06-06 18:30:50
阅读次数:
236
376. Wiggle Subsequence 自己没想出来,看了别人的分析. 主要是要分析出升序降序只跟临近的2个决定.虽然直觉上不是这样. ...
分类:
其他好文 时间:
2018-05-20 11:48:07
阅读次数:
246
题目:三数之和 内容: 给定一个包含 n 个整数的数组 nums,判断 nums 中是否存在三个元素 a,b,c ,使得 a + b + c = 0 ?找出所有满足条件且不重复的三元组。 注意:答案中不可以包含重复的三元组。 第二个小问题去重复 C++ 的STL提供有去重算法unique,直接去重即 ...
分类:
编程语言 时间:
2018-05-11 20:25:25
阅读次数:
2671