摘要: 五斤桶装满,然后倒进三斤桶里,这时五斤桶里有两斤,三斤桶是满的。将三斤桶倒掉,五斤桶里的两斤倒进三斤桶里,三斤桶里就有两斤了,五斤桶是空的了。再次把五斤桶装满水,然后再倒进三斤桶,将三斤桶倒满,五斤桶里倒出去了一斤就是四斤了。 阅读全文
posted @ 2013-09-04 18:36 嗨,你的益达~~~ 阅读(2326) 评论(0) 推荐(0) 编辑
摘要: 有A,B,Main三个类如下:public class A{A(){System.out.println("A");}}public class B extends A{B(){System.out.println("B");}}public class Main extends B{Main(){System.out.println("Main");}private A a = new A();private B b = new B();public static void main(String[] args){System.ou 阅读全文
posted @ 2013-09-04 18:36 嗨,你的益达~~~ 阅读(284) 评论(0) 推荐(0) 编辑
摘要: /*** 二分法 :用折半查找法在一组排好序(递增有序或递减有序)的值中查找某个数据。* * 基本思想:* * 首先将待查数据k与排好序(递增有序)的一组数据的中间位置上的数据进行比较, 若相等,则查找成功;* 若k>a[mid],则待查数据k只可能出现在右半部a[mid+1…n]中,则应在这个右半... 阅读全文
posted @ 2013-09-04 18:15 嗨,你的益达~~~ 阅读(3088) 评论(0) 推荐(0) 编辑
摘要: (1) public static void main(String[] as){ int a = 0;switch (a){ case 1:System.out.println("1");case 2:System.out.println("2");case 3:System.out.printl... 阅读全文
posted @ 2013-09-04 17:05 嗨,你的益达~~~ 阅读(869) 评论(0) 推荐(0) 编辑