摘要: Question:Given a binary tree, find the maximum path sum.The path may start and end at any node in the tree.For example:Given the below binary tree, ... 阅读全文
posted @ 2014-06-13 18:56 Phoebe815 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 内部类详解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) 编辑