
Jav
文章平均质量分 63
zql234
这个作者很懒,什么都没留下…
展开
-
单例模式
/** * 懒汉,饿汉模式.懒汉模式在运行的时候获取对象比较慢,但是加载类的时候比较快,但是饿汉模式是在运行的时候获取对象较快,加载类的时候慢。 */ //懒汉模式: public class SingleTon{ private static SingleTon sin= null;//静态私有成员 private SingleTon(){}//私有构造函数原创 2018-02-04 21:15:19 · 164 阅读 · 0 评论 -
汉诺塔(带显示板)
public class HanNuo { static List a =new ArrayList(); static List b =new ArrayList(); static List c =new ArrayList(); static int k=1; public static void makeA(){ for(;k a.add(k); }原创 2018-02-04 21:19:52 · 197 阅读 · 0 评论 -
字节流
public class FileT { public static void main(String[] args) { FileInputStream fis=null; DataInputStream dis = null; FileOutputStream fos = null; DataOutputStream dos = null; try {原创 2018-02-04 21:40:00 · 168 阅读 · 0 评论 -
快速排序,快排
public class QuickSort { /*** * 快排 * 一个数组int []arr,取第一个元素的值,赋值给temp=arr[0],做临时基准数(该temp仅做对比用) * 1.左右两头一起向中间比较,找到右边第一个比temp小的数和再找到左边第一个比temp大的数,将这两个数在arr中交换位置 * 2.循环上一过程,直到左边数的下标idx_left和右边下标i原创 2018-02-04 22:44:02 · 257 阅读 · 0 评论