2018年4月15日

java排序--快速排序

摘要: public class quikSort { private static int count =0 ; public static int sort(int[] arry, int l, int h) { int key = arry[l]; while (l < h) { while (l < 阅读全文

posted @ 2018-04-15 23:40 GoFire 阅读(91) 评论(0) 推荐(0) 编辑

java之快速排序

摘要: public class quikSort { private static int count =0 ; public static int sort(int[] arry, int l, int h) { int key = arry[l]; while (l < h) { while (l < 阅读全文

posted @ 2018-04-15 23:39 GoFire 阅读(106) 评论(0) 推荐(0) 编辑

2018年3月22日

数据库连接封装

摘要: public class DBConnection { private String dbusername; private String dbpasswd; private DBType dbtype; private String JDBCString; public DBConnection( 阅读全文

posted @ 2018-03-22 10:58 GoFire 阅读(212) 评论(0) 推荐(0) 编辑

导航