Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below. For example, given the fo ...
分类:
编程语言 时间:
2016-11-02 17:53:54
阅读次数:
225
读写文件 一个流被定义为一个数据序列。输入流用于从源读取数据,输出流用于向目标写数据。 输入流和输出流的类层次图。 FileInputStream FileInputStream用于从文件中读取数据,它的对象可以用关键字new创建, InputStream file = new FileInputS ...
分类:
编程语言 时间:
2016-11-02 14:25:30
阅读次数:
209
一、什么是线程? 线程:程序中一个单一的顺序控制流程。进程内一个相对独立的、可调度的执行单元,是系统独立调度和分派CPU的基本单位。 多线程:单个程序中同时运行多个线程完成不同的工作,称为多线程。 特点: 1)轻量级的进程,程序运行流中可执行的最小单元,线程不拥有系统资源,多个线程共享进程拥有的资源 ...
分类:
编程语言 时间:
2016-11-02 10:24:44
阅读次数:
349
Given an index k, return the kth row of the Pascal's triangle. For example, given k = 3,Return [1,3,3,1]. Note:Could you optimize your algorithm to us ...
分类:
编程语言 时间:
2016-11-02 00:37:38
阅读次数:
216
/*header: Navigation public style*/header:before, header:after ,.navigation:before, .navigation:after,.nav-row:before, .nav-row:after,.top-bar:before, ...
分类:
Web程序 时间:
2016-11-01 19:18:51
阅读次数:
243
Problem: You have a total of n coins that you want to form in a staircase shape, where every k-th row must have exactly k coins. Given n, find the tot ...
分类:
其他好文 时间:
2016-11-01 13:38:02
阅读次数:
193
my java code of the function: First, I found that the awt library of java cannot be used on Linux. So, must add parameters of jvm to run it. As for th ...
分类:
编程语言 时间:
2016-11-01 00:47:15
阅读次数:
424
Spring的另一个重要思想是AOP,面向切面的编程,它提供了一种机制,可以在执行业务前后执行另外的代码,Servlet中的Filter就是一种AOP思想的体现,下面通过一个例子来感受一下. 假设我们现在需要在针对数据库进行CRUD操作时添加一组日志,即在执行CRUD方法前后分别加上一句话,实现简单 ...
分类:
编程语言 时间:
2016-10-31 20:55:30
阅读次数:
242
spring管理的类如何调用非spring管理的类:使用框架提供的一个感知工具. ...
分类:
编程语言 时间:
2016-10-31 20:48:08
阅读次数:
238