自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 资源 (3)
  • 收藏
  • 关注

原创 流复制

<br />public class StreamCopy { public static void main(String... args) throws IOException { // copyStreamWithChannel(System.in, System.out); FileInputStream fin = new FileInputStream("data/data.txt"); copyStreamWithChannel(fin, System.out); f

2010-10-09 08:37:00 349

原创 kmp in scala

<br />package org.kmpobject Kmp { private var i = 0 private var j = 0 def apply(pattern: String, target: String): Int = { //max self matched char number val p = new Array[Int](pattern.length) //pre process p(0) = 0 for (

2010-08-16 20:25:00 699

原创 maven

<br />maven may be the best tool to manager scala application,and lift web app is directly supported.<br />IDEs for scala is not nice. Netbeans reports errors by mistake,Eclipse runs extremely slow,intellij idea may be somewhat better,but not better enough

2010-07-22 21:46:00 284

原创 最大公约数 --scala

def gcd(x:Int,y:Int):Int = {if x == 0 y else gcd(y%x,y)}尾递归不用消除

2010-07-05 10:49:00 1608

Apress Pro Spring 2.5

Spring全面教程,涵盖各个方面,通篇读一遍之后能开阔你的眼界

2010-09-24

Hadoop The Definitive Guide

分布式并行计算,apache上的项目,提供类似google文件系统的功能

2010-08-30

programming in scala(英文)

一种强大的函数式面向对象语言,运行于jvm

2010-07-06

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除