Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters fo...
分类:
其他好文 时间:
2015-03-02 18:25:51
阅读次数:
154
关键是判断循环的长度,若某一步的余数已出现过,则循环确定#include #include int s[10000], y[10000],sign[10000];int main(){ int a, b, sz, yu, k , cnt; while(scanf("%d%d",&a,&b...
分类:
其他好文 时间:
2015-02-28 21:26:03
阅读次数:
146
[LeetCode] 003. Longest Substring Without Repeating Characters (Medium) (C++/Java/Python)...
分类:
编程语言 时间:
2015-02-27 13:34:22
阅读次数:
207
题目链接:http://poj.org/problem?id=1325As we all know, machine scheduling is a very classical problem in computer science and has been studied for a very ...
分类:
系统相关 时间:
2015-02-22 13:25:36
阅读次数:
225
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-02-15 23:10:42
阅读次数:
359
Longest Substring Without Repeating Characters 解题过程。
分类:
其他好文 时间:
2015-02-14 12:14:20
阅读次数:
117
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters fo...
分类:
其他好文 时间:
2015-02-10 14:51:13
阅读次数:
151
擦!leetcode题目:Longest Substring Without Repeating Characters...
分类:
其他好文 时间:
2015-02-09 18:33:02
阅读次数:
114
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-02-05 00:50:42
阅读次数:
174
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters fo...
分类:
其他好文 时间:
2015-02-03 16:46:32
阅读次数:
112