码迷,mamicode.com
首页 >  
搜索关键字:scheduling repeating    ( 957个结果
Longest Substring Without Repeating Characters
#title#Longest Substring Without Repeating Characters #description:#Given a string, #find the length of the longest substring without #repeating chara...
分类:其他好文   时间:2015-02-03 13:09:35    阅读次数:136
LeetCode - Longest Substring Without Repeating Characters
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3. For ...
分类:其他好文   时间:2015-02-03 07:03:24    阅读次数:139
[LeetCode]Longest Substring Without Repeating Characters
Q:Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3....
分类:其他好文   时间:2015-02-01 19:13:07    阅读次数:163
uva 202 Repeating Decimals 模拟
模拟 小烦
分类:其他好文   时间:2015-02-01 12:05:07    阅读次数:146
LeetCode—*Fraction to Recurring Decimal
Given two integers representing the numerator and denominator of a fraction, return the fraction in string format. If the fractional part is repeating, enclose the repeating part in parentheses....
分类:其他好文   时间:2015-01-30 15:55:05    阅读次数:123
Leetcode#3 Longest Substring Without Repeating Characters
原题地址双指针法。右指针不断向右试探,当遇到重复字符时停下来,此时左指针开始向右收缩,直到去掉那个重复字符。代码: 1 int lengthOfLongestSubstring(string s) { 2 map record; 3 int maxLen = 0; 4...
分类:其他好文   时间:2015-01-29 19:20:25    阅读次数:140
LeetCode --- 3. Longest Substring Without Repeating Characters
题目链接:Longest Substring Without Repeating Characters Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters...
分类:其他好文   时间:2015-01-27 23:33:44    阅读次数:176
leetcode_3_Longest Substring Without Repeating Characters
描述: Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is ...
分类:其他好文   时间:2015-01-27 20:21:40    阅读次数:149
Leetcode: Fraction to Recurring Decimal
Given two integers representing the numerator and denominator of a fraction, return the fraction in string format.If the fractional part is repeating,...
分类:其他好文   时间:2015-01-27 10:55:21    阅读次数:148
leetcode-----------Longest Substring Without Repeating Characters
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3. Fo...
分类:其他好文   时间:2015-01-27 09:30:15    阅读次数:169
957条   上一页 1 ... 75 76 77 78 79 ... 96 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!