https://oj.leetcode.com/problems/longest-substring-without-repeating-characters/Given a string, find the length of the longest substring without repea...
分类:
其他好文 时间:
2015-01-18 23:57:54
阅读次数:
264
大水题 模拟在草稿纸上算除法的过程→_→
#include
#include
using namespace std;
const int N = 3005;
int a[N], v[N];
int main()
{
int n, m, cnt;
while(~scanf("%d%d", &n, &m))
{
cnt = 0;
mems...
分类:
其他好文 时间:
2015-01-18 13:14:08
阅读次数:
173
题目:
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-17 18:10:44
阅读次数:
251
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-15 18:07:21
阅读次数:
178
# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'https://oj.leetcode.com/problems/longest-substring-without-repeating-characters/Given a st...
分类:
编程语言 时间:
2015-01-12 01:36:33
阅读次数:
255
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters fo...
分类:
其他好文 时间:
2015-01-11 22:58:44
阅读次数:
223
题目:
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 parent...
分类:
编程语言 时间:
2015-01-09 15:37:55
阅读次数:
295
题目描述:
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 pare...
分类:
其他好文 时间:
2015-01-08 13:27:49
阅读次数:
113
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-07 23:40:19
阅读次数:
305
这文章是用来记录自己最近使用volley的StringRequest的一些心得,以及volley关于request的代码深读。从网络上可以知道,volley适合数据量不大但是通信频繁的场景。volley提供的便利功能有如下这些:JSON,图像等的异步下载;网络请求的排序(scheduling)网络请...
分类:
移动开发 时间:
2015-01-07 18:40:20
阅读次数:
293