1、形式参数: 基本类型(太简单) 引用类型 类名:(匿名对象的时候其实我们已经讲过了)需要的是该类的对象 抽象类:需要的是该抽象的类子类对象 接口:需要的是该接口的实现类对象 A、 类名:(匿名对象的时候其实我们已经讲过了)需要的是该类的对象 (这个例子就是这个) B、 抽象类:需要的是该抽象的类 ...
分类:
编程语言 时间:
2016-09-11 07:55:03
阅读次数:
222
Given a binary tree, return the postorder traversal of its nodes' values. For example:Given binary tree {1,#,2,3}, return [3,2,1]. Note: Recursive sol ...
分类:
其他好文 时间:
2016-09-11 07:54:03
阅读次数:
149
第一章 基本网络概念 网络 网络的分层 IP TCP和UDP Internet 客户/服务器模型 Internet标准 第二章 流 输出流 输入流 过滤器流 阅读器和书写流 第三章 线程 运行线程 从线程返回信息 同步 死锁 线程调度 线程池和Executor ...
分类:
编程语言 时间:
2016-09-11 07:52:25
阅读次数:
165
1、 接口的特点: A:接口用关键字interface表示 interface 接口名 {} B:类实现接口用implements表示 class 类名 implements 接口名 {} C:接口不能实例化 那么,接口如何实例化呢? 按照多态的方式来实例化。 D:接口的子类 a:可以是抽象类。但是 ...
分类:
编程语言 时间:
2016-09-11 07:52:45
阅读次数:
260
Given a binary tree, return the preorder traversal of its nodes' values. For example:Given binary tree {1,#,2,3}, return [1,2,3]. Note: Recursive solu ...
分类:
其他好文 时间:
2016-09-11 06:51:27
阅读次数:
201
Given an absolute path for a file (Unix-style), simplify it. For example,path = "/home/", => "/home"path = "/a/./b/../../c/", => "/c" path = "/a/./b/. ...
分类:
其他好文 时间:
2016-09-11 06:52:16
阅读次数:
159
Given a binary tree, return the inorder traversal of its nodes' values. For example:Given binary tree [1,null,2,3], 1 \ 2 / 3 return [1,3,2]. Note: Re ...
分类:
其他好文 时间:
2016-09-11 06:51:55
阅读次数:
135
Invert a binary tree. to ...
分类:
其他好文 时间:
2016-09-11 06:49:04
阅读次数:
153
Given a non-negative integer num, repeatedly add all its digits until the result has only one digit. For example: Given num = 38, the process is like: ...
分类:
其他好文 时间:
2016-09-11 06:48:43
阅读次数:
146
Write a function to delete a node (except the tail) in a singly linked list, given only access to that node. Supposed the linked list is 1 -> 2 -> 3 - ...
分类:
其他好文 时间:
2016-09-11 06:51:34
阅读次数:
125
Evaluate the value of an arithmetic expression in Reverse Polish Notation. Valid operators are +, -, *, /. Each operand may be an integer or another e ...
分类:
其他好文 时间:
2016-09-11 06:51:35
阅读次数:
151
Given an array nums, write a function to move all 0's to the end of it while maintaining the relative order of the non-zero elements. For example, giv ...
分类:
其他好文 时间:
2016-09-11 06:49:06
阅读次数:
185
1. 界面介绍 (1)初始界面选项介绍 (2)如何使用匹配 (3)如何使用正则替换 (4)如何使用Debug 2. 安装介绍 安装步骤比较简单,如下3图所示: (1)开始安装 (2)同意协议 (3)安装成功界面 ...
分类:
其他好文 时间:
2016-09-11 06:49:33
阅读次数:
194
Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array. Note:You may assume that nums1 has enough space (size tha ...
分类:
其他好文 时间:
2016-09-11 06:50:19
阅读次数:
156
大四期间快毕业了,同学们张罗旗鼓的准备就业方向,大学给人带来很多经历。有人说,大学是个微型社会,里面充满各种复杂的事情。有人说,大学是美丽而羞涩的梦,难以追求,望而却步。有人说,大学是放飞梦想的舞台,找到了展示自己能力的开端。而我说,大学仅仅只是一个起点。 2016年9月5日,我大四开学了,同学们也 ...
分类:
其他好文 时间:
2016-09-11 06:48:40
阅读次数:
175
中央仓库就是Maven的一个默认的远程仓库,Maven的安装文件中自带了中央仓库的配置($M2_HOME/lib/maven-model-builder.jar) 在很多情况下,默认的中央仓库无法满足项目的需求,可能项目需要的构件存在另一个远程仓库中,这是就可以在pom.xml中配置仓库,代码如下: ...
分类:
其他好文 时间:
2016-09-11 06:50:01
阅读次数:
123
Reverse digits of an integer. Example1: x = 123, return 321Example2: x = -123, return -321 Solution1: 这道题做的太麻烦了,corner case很多,碰到负数不知道怎么给reverse。强行转成st ...
分类:
其他好文 时间:
2016-09-11 06:47:57
阅读次数:
130