原题链接在这里:https://leetcode.com/problems/longest-substring-with-at-most-two-distinct-characters/ 与Longest Substring Without Repeating Characters类似。 维护一个窗
分类:
其他好文 时间:
2016-02-05 11:29:14
阅读次数:
179
https://leetcode.com/problems/longest-substring-without-repeating-characters/ Given a string, find the length of the longest substring without repeati
分类:
其他好文 时间:
2016-02-03 06:39:32
阅读次数:
165
Regular Expression Quantifiers allow us to identify a repeating sequence of characters of minimum and maximum lengths. In this lesson we'll use Regula
分类:
其他好文 时间:
2016-02-01 09:36:15
阅读次数:
216
计算一个字符串的最长不重复字符串长度 例如abcdcfdgq 截取的是cfdgq 长度为5 1 public int lengthOfLongestSubstring(String s) { 2 if(s == null || s.length() == 0){ 3 return 0; 4 } 5
分类:
其他好文 时间:
2016-01-29 21:04:59
阅读次数:
149
package cn.edu.xidian.sselab.hashtable;import java.util.HashMap;import java.util.HashSet;import java.util.Map;import java.util.Set;/** * * @author zhi
分类:
其他好文 时间:
2016-01-29 00:19:10
阅读次数:
187
Two pointers 配合 HashSet 相当于控制一个小窗,如果下一个字母是新的字母,那小窗就往右移一格,同时检查一下是不是最大长度,如果下一个字母是有重复的,那么就让小窗的左侧往右移动到第一个不是该字母的地方。 需要注意的是,小窗左侧移动的时候,小窗右侧也要往右边移动一次,不然下一轮检查的
分类:
其他好文 时间:
2016-01-28 07:04:43
阅读次数:
118
Longest Substring Without Repeating Characters Given a string, find the length of the longest substring without repeating characters. For example, the...
分类:
其他好文 时间:
2016-01-26 18:38:48
阅读次数:
129
题目:Givenastring,findthelengthofthelongestsubstringwithoutrepeatingcharacters.Forexample,thelongestsubstringwithoutrepeatinglettersfor"abcabcbb"is"abc",whichthelengthis3.For"bbbbb"thelongestsubstringis"b",withthelengthof1.大意是找出最长无重复子串算法思路..
分类:
编程语言 时间:
2016-01-23 18:46:08
阅读次数:
190
#include "List.h"#include #include using namespace std;#define max(a, b) (a) > (b) ? (a) : (b)// LeetCode, Longest Substring Without Repeating Charact...
分类:
其他好文 时间:
2016-01-23 01:10:10
阅读次数:
187
题目大意就是取循环小数的循环节思路比较清晰完全模拟人脑做除法,同时分组标记被除数和除数,判断循环节中间需要判断是除尽和没除尽两种情况最后要关注格式,每两个输出要有空行,且第二行前有3个空格一下代码 1 #include 2 #include 3 using namespace std; 4 5...
分类:
其他好文 时间:
2016-01-23 01:04:09
阅读次数:
172