摘要: 1.准备环境jar包 Your project will need (at least) the Quartz core library, named quartz-x.y.z.jar (where x.y.z is a version number), in its classpath.if yo 阅读全文
posted @ 2016-04-07 16:32 金鱼的第七秒记忆 阅读(420) 评论(0) 推荐(0) 编辑
摘要: 1.准备环境jar包 Your project will need (at least) the Quartz core library, named quartz-x.y.z.jar (where x.y.z is a version number), in its classpath.if yo 阅读全文
posted @ 2016-04-07 16:29 金鱼的第七秒记忆 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 1、数组的冒泡排序 public void bubbleSort(int a[]) { int n = a.length; for (int i = 0; i < n - 1; i++) { for (int j = 0; j < n - 1; j++) { if (a[j]  阅读全文
posted @ 2016-04-07 16:15 金鱼的第七秒记忆 阅读(408) 评论(0) 推荐(0) 编辑
摘要: 前序遍历:根节点->左子树->右子树 中序遍历:左子树->根节点->右子树 后序遍历:左子树->右子树->根节点 例如:求下面树的三种遍历 前序遍历:abdefgc 中序遍历:debgfac 后序遍历:edgfbca 阅读全文
posted @ 2016-04-07 16:14 金鱼的第七秒记忆 阅读(152) 评论(0) 推荐(0) 编辑