上一页 1 ··· 15 16 17 18 19
摘要: 内部类详解1、定义 一个类的定义放在另一个类的内部,这个类就叫做内部类。 public class First { public class Contents{ public void f(){ System.out.println("In Class First'... 阅读全文
posted @ 2014-06-13 17:17 Phoebe815 阅读(165) 评论(0) 推荐(0) 编辑
摘要: /*** @author guwh* @version 创建时间:2011-11-3 上午10:49:36* 类说明*/ package com.jabberchina.test;import java.util.ArrayList;import java.util.Collections;impo... 阅读全文
posted @ 2014-06-13 17:05 Phoebe815 阅读(408) 评论(0) 推荐(0) 编辑
摘要: Question:Given a collection of intervals, merge all overlapping intervals.For example,Given[1,3],[2,6],[8,10],[15,18],return[1,6],[8,10],[15,18].-----... 阅读全文
posted @ 2014-06-13 17:00 Phoebe815 阅读(222) 评论(0) 推荐(0) 编辑
摘要: Question:Validate if a given string is numeric.Some examples:"0"=>true" 0.1 "=>true"abc"=>false"1 a"=>false"2e10"=>trueNote:It is intended for the pro... 阅读全文
posted @ 2014-06-12 22:23 Phoebe815 阅读(819) 评论(0) 推荐(0) 编辑
摘要: 转载http://luolei.org/regula-expression-simple-tutorial/第一次接触正则表达式是在今年四月的腾讯笔试,当时是一道选择题问如何判断输入的是否是 QQ 号码(即纯数字),当时是蒙了一个答案,菜鸟不会嘛 ╮(╯3╰)╭ 。事后自己倒专门学习了正则表达式,还... 阅读全文
posted @ 2014-06-12 18:06 Phoebe815 阅读(384) 评论(0) 推荐(0) 编辑
摘要: Question:Given a stringsand a dictionary of wordsdict, add spaces insto construct a sentence where each word is a valid dictionary word.Return all suc... 阅读全文
posted @ 2014-06-12 15:32 Phoebe815 阅读(296) 评论(2) 推荐(0) 编辑
摘要: Question:Given a stringsand a dictionary of wordsdict, determine ifscan be segmented into a space-separated sequence of one or more dictionary words.F... 阅读全文
posted @ 2014-06-12 14:27 Phoebe815 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 转载 http://blog.163.com/asd_wll/blog/static/210310402010112833332260/1、HashSet类Java.util.HashSet类实现了Java.util.Set接口。l它不允许出现重复元素;l不保证和政集合中元素的顺序l允许包含值为n... 阅读全文
posted @ 2014-06-12 14:00 Phoebe815 阅读(2409) 评论(0) 推荐(0) 编辑
摘要: Question:Givennnon-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in t... 阅读全文
posted @ 2014-06-12 13:20 Phoebe815 阅读(350) 评论(3) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19