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
package com.mingxin.leetcode.leet_14;/** * Created by Administrator on 2016/1/25. */public class LongestCommonPrefix { public static void main(Stri...
分类:
其他好文 时间:
2016-01-26 12:19:17
阅读次数:
132
Given an integer matrix, find the length of the longest increasing path.From each cell, you can either move to four directions: left, right, up or dow...
分类:
其他好文 时间:
2016-01-25 11:30:43
阅读次数:
341
下面的以zendframework 1为例getSubs($categorys,$item['categoryId'],$level+1)); } } return $subs; } //获取某个分类的所有父分类 //方法一,递归 function getPare...
分类:
Web程序 时间:
2016-01-24 11:32:48
阅读次数:
176
Longest PrefixIOI'96The structure of some biological objects is represented by the sequence of their constituents, where each part is denoted by an up...
分类:
其他好文 时间:
2016-01-24 11:31:23
阅读次数:
109
题目:Givenastring,findthelengthofthelongestsubstringwithoutrepeatingcharacters.Forexample,thelongestsubstringwithoutrepeatinglettersfor"abcabcbb"is"abc",whichthelengthis3.For"bbbbb"thelongestsubstringis"b",withthelengthof1.大意是找出最长无重复子串算法思路..
分类:
编程语言 时间:
2016-01-23 18:46:08
阅读次数:
190
Description题目描述ZB is playing a card game where the goal is to make straights. Each card in the deck has a number between 1 and M(including 1 and M). A...
分类:
其他好文 时间:
2016-01-23 18:18:54
阅读次数:
771
#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
https://leetcode.com/problems/longest-increasing-path-in-a-matrix/Given an integer matrix, find the length of the longest increasing path.From each ce...
分类:
其他好文 时间:
2016-01-21 00:07:17
阅读次数:
251
找出字符串中没有相同字符的的最长串注意这里的Characters指的是字符,不是字母,就是说|/?~这样的字符都会出现,所以要用到ASCII码最简单的方法是,从第一个字符开始,往后一个个判断,里面有没有重复的字符,如果重复了则记录下长度。例如:abcabcbb第一次:abc 重复于a 长度3第二次:...
分类:
其他好文 时间:
2016-01-19 20:54:56
阅读次数:
169