Longest Substring Without Repeating Characters
Total Accepted: 152787 Total
Submissions: 687012 Difficulty: Medium
Given a string, find the length of the longest substring wi...
分类:
其他好文 时间:
2016-06-02 14:51:36
阅读次数:
124
题目链接:https://leetcode.com/problems/longest-increasing-path-in-a-matrix/
题目:
Given an integer matrix, find the length of the longest increasing path.
From each cell, you can either move to fou...
分类:
其他好文 时间:
2016-06-02 14:18:25
阅读次数:
198
题目 Given a string, find the length of the longest substring without repeating characters. Examples: Given "abcabcbb", the answer is "abc", which the l... ...
分类:
其他好文 时间:
2016-05-31 22:11:46
阅读次数:
239
广播机制简介
广播分类
标准广播
有序广播
接收系统广播
动态注册监听网络变化
静态注册实现开机启动
注意耗时操作
发送自定义广播
发送有序广播
发送有序广播步骤
优先级
使用本地广播
出现原因
本地广播使用
优点
广播优先级
基本原则
ordered 广播
非 ordered 广播
只能动态接受广播源码分析
目的
参考httpblogcsdnnetgemmemarticledetails88594...
分类:
其他好文 时间:
2016-05-30 15:46:43
阅读次数:
295
我的leetcode之旅,该篇章主要完成使用Java实现算法。这是第5篇 Longest Palindromic Substring...
分类:
编程语言 时间:
2016-05-30 15:37:44
阅读次数:
127
题目链接:https://leetcode.com/problems/longest-substring-without-repeating-characters/
题目:
Given a string, find the length of the longest substring without repeating characters.
Examples:
Give...
分类:
其他好文 时间:
2016-05-30 15:33:33
阅读次数:
195
All three algorithms GRM, CF, and NBI can provide each user an ordered queue of all its uncollected
movies. For an arbitrary user ui, if the edge
ui?oj
is in the probe set
according to the trai...
分类:
编程语言 时间:
2016-05-30 15:08:07
阅读次数:
261
题目链接:https://leetcode.com/problems/longest-palindromic-substring/
题目:
Given a string S,
find the longest palindromic substring in S.
You may assume that the maximum length of S is
1000, and ...
分类:
其他好文 时间:
2016-05-30 14:53:40
阅读次数:
150
题目大意:给n个0~m之间的数,如果是0,那么0可以变为任意的一个1~m之间的一个数。从中选出若干个数,使构成一个连续的序列。问能构成的最长序列的长度为多少? 题目分析:枚举连续序列的起点,二分枚举二分序列的终点。 代码如下; ...
分类:
其他好文 时间:
2016-05-29 18:26:14
阅读次数:
150