acm java 类库_acm中用到JAVA的简单介绍

1.基本输入输出:

1)JDK 1.5.0新增的Scanner类为输入提供了良好的基础,简直就是为ACM-ICPC而设的。

一般用法为:

import java.io.*

import java.util.*

public class Main

{

public static void main(String args[])

{

Scanner cin = new Scanner(new BufferedInputStream(System.in));

...

}

}

当然也可以直接Scanner cin = new Scanner(System.in);只是加Buffer可能会快一些。

2)

读一个整数:int n = cin.nextInt();相当于scanf("%d", &n);或cin >> n;

读一个字符串:String s = cin.next();相当于scanf("%s", s);或cin >> s;

读一个浮点数:double t = cin.nextDouble();相当于scanf("%lf", &t);或cin >> t;

读一整行:String s = cin.nextLine();相当于gets(s);或cin.getline(...);

判断是否有下一个输入可以用cin.hasNext()或cin.hasNextInt()或cin.hasNextDouble()等,具体见TOJ 1001例程。

3)输出一般可以直接用System.out.print()和System.out.println(),前者不输出换行,而后者输出。

比如:System.out.println(n);   // n为int型

同一行输出多个整数可以用

System.out.println(new Integer(n).toString() + " " + new Integer(m).toString());

也可重新定义:

static PrintWriter cout = new PrintWriter(new BufferedOutputStream(System.out));

cout.println(n);

4)对于输出浮点数保留几位小数的问题,可以使用DecimalFormat类。

import java.text.*;

DecimalFormat f = new DecimalFormat("#.00#");

DecimalFormat g = new DecimalFormat("0.000");

double a = 123.45678, b = 0.12;

System.out.println(f.format(a));

System.out.println(f.format(b));

System.out.println(g.format(b));

这里0指一位数字,#指除0以外的数字。

2.大数字

BigInteger和BigDecimal是在java.math包中已有的类,前者表示整数,后者表示浮点数。

用法:不能直接用符号如+、-来使用大数字,例如:

import java.math.*   //需要引入java.math包

BigInteger a = BigInteger.valueOf(100);

BigInteger b = BigInteger.valueOf(50);

BigInteger c = a.add(b)   // c = a + b;

主要有以下方法可以使用:

BigInteger add(BigInteger other)

BigInteger subtract(BigInteger other)

BigInteger multiply(BigInteger other)

BigInteger divide(BigInteger other)

BigInteger mod(BigInteger other)

int compareTo(BigInteger other)

static BigInteger valueOf(long x)

输出大数字时直接使用System.out.println(a)即可。

3.字符串

String类用来存储字符串,可以用charAt方法来取出其中某一字节,计数从0开始:String a = "Hello";    // a.charAt(1) = 'e'

用substring方法可得到子串,如上例

System.out.println(a.substring(0, 4))     // output "Hell"

注意第2个参数位置上的字符不包括进来。这样做使得s.substring(a, b)总是有b-a个字符。

字符串连接可以直接用+号,如

String a = "Hello";

String b = "world";

System.out.println(a + ", " + b + "!");    // output "Hello, world!"

如想直接将字符串中的某字节改变,可以使用另外的StringBuffer类。

4.调用递归(或其他动态方法)

在主类中main方法必须是public static void的,在main中调用非static类时会有警告信息,可以先建立对象,然后通过对象调用方法:

public class Main

{

...

void dfs(int a)

{

if (...) return;

dfs(a+1);

}

public static void main(String args[])

{

...

Main e = new Main();

e.dfs(0);

...

}

}

5.其他注意的事项

1)Java是面向对象的语言,思考方法需要变换一下,里面的函数统称为方法,不要搞错。

2)Java里的数组有些变动,多维数组的内部其实都是指针,所以Java不支持fill多维数组。

数组定义后必须初始化,如int[] a = new int[100];

3)布尔类型为boolean,只有true和false二值,在if (...) / while (...)等语句的条件中必须为boolean类型。

在C/C++中的if (n % 2) ...在Java中无法编译通过。

4)下面在java.util包里Arrays类的几个方法可替代C/C++里的memset、qsort/sort和bsearch:

Arrays.fill();

Arrays.sort();

Arrays.binarySearch();

posted on 2009-03-13 15:21 飞翔天使 阅读(563) 评论(1)  编辑  收藏 所属分类: ACM

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值