摘要: /** * 合并两个数组并排序 * Create by Administrator * 2018/6/26 0026 * 下午 4:29 **/ public class MergeApp { public static void merge(int[] arrayA,int sizeA,int[] arrayB,int sizeB,int[] arrayC){ ... 阅读全文
posted @ 2018-06-26 16:54 花儿为何那样红 阅读(4156) 评论(0) 推荐(0) 编辑
摘要: /** * 递归实现二分查找法 * Create by Administrator * 2018/6/21 0021 * 上午 11:25 **/ class OrdArray{ private long[] a; private int nElems; public OrdArray(int max){ this.a = new long[m... 阅读全文
posted @ 2018-06-21 14:34 花儿为何那样红 阅读(664) 评论(0) 推荐(0) 编辑
摘要: ERROR 1130 (HY000): Host 'localhost' is not allowed to connect to this MySQL server 此处是root账户没有本地数据库的访问权限,所以无法连接数据库,需要使用grant给root账户授权。 授权之前需要登录到数据库,使 阅读全文
posted @ 2018-06-20 15:31 花儿为何那样红 阅读(6015) 评论(0) 推荐(0) 编辑
摘要: /** * 递归实现变位字 * Create by Administrator * 2018/6/20 0020 * 上午 10:23 **/ public class AnagramApp { static int size; static int count; static char[] arrChar = new char[100]; publ... 阅读全文
posted @ 2018-06-20 11:04 花儿为何那样红 阅读(515) 评论(0) 推荐(0) 编辑
摘要: /** * 递归 * Create by Administrator * 2018/6/20 0020 * 上午 9:41 **/ public class TriangleApp { static int theNumber; public static void main(String[] args) throws IOException{ wh... 阅读全文
posted @ 2018-06-20 11:02 花儿为何那样红 阅读(212) 评论(0) 推荐(0) 编辑
摘要: /** * 使用链表实现队列 * Create by Administrator * 2018/6/19 0019 * 下午 4:37 **/ public class Link { public long dData; public Link next; public Link(long d){ this.dData = d; } ... 阅读全文
posted @ 2018-06-19 17:18 花儿为何那样红 阅读(194) 评论(0) 推荐(0) 编辑
摘要: /** * 使用链表实现队列 * Create by Administrator * 2018/6/19 0019 * 下午 4:37 **/ public class Link { public long dData; public Link next; public Link(long d){ this.dData = d; } ... 阅读全文
posted @ 2018-06-19 16:56 花儿为何那样红 阅读(141) 评论(0) 推荐(0) 编辑
摘要: /** * 双端链表操作 * Create by Administrator * 2018/6/14 0014 * 下午 2:05 **/ class Link1 { public long dData; public Link1 next; public Link1(int id) { this.dData = id; } ... 阅读全文
posted @ 2018-06-15 10:14 花儿为何那样红 阅读(114) 评论(0) 推荐(0) 编辑
摘要: /** * 单链表操作 * Create by Administrator * 2018/6/14 0014 * 下午 2:05 **/ public class Link { public int iData; public double dData; public Link next; public Link(int id, double dd)... 阅读全文
posted @ 2018-06-14 15:35 花儿为何那样红 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 运行测试: 请输入: (4+2*3)/2 For ( Stack (bottom-->top): For 4 Stack (bottom-->top): ( For + Stack (bottom-->top): ( For 2 Stack (bottom-->top): ( + For * Sta 阅读全文
posted @ 2018-06-14 12:21 花儿为何那样红 阅读(1697) 评论(0) 推荐(0) 编辑
摘要: /** * 队列 * Create by Administrator * 2018/6/11 0011 * 下午 3:27 **/ public class Queue { private int maxSize; private long[] queArray; private int front; //前 private int rear;... 阅读全文
posted @ 2018-06-11 16:33 花儿为何那样红 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 测试控制台输入字符串:a{b(c]d} 结果:Error:] at 3 阅读全文
posted @ 2018-06-11 15:01 花儿为何那样红 阅读(516) 评论(0) 推荐(0) 编辑
摘要: /** * 栈 * Create by Administrator * 2018/6/11 0011 * 上午 10:20 **/ public class StackX { private int maxSixe; private long[] stackArray; private int to 阅读全文
posted @ 2018-06-11 14:11 花儿为何那样红 阅读(217) 评论(0) 推荐(0) 编辑
摘要: ++a:如果++在前就会先把a+1。 a++:如果++在后就会先a然后在执行++的操作。代码: int a = 1; System.out.pritln(++a); //输出2 int s = 1; System.out.println(s++); //输出1 System.out.println( 阅读全文
posted @ 2018-06-11 11:07 花儿为何那样红 阅读(1705) 评论(0) 推荐(0) 编辑
摘要: /** * 数组的曾删改查 * Create by Administrator * 2018/6/8 0008 * 上午 9:54 **/ public class HighArray { private long[] a; private int nElems; public HighArray(int max){ a = new long... 阅读全文
posted @ 2018-06-08 15:05 花儿为何那样红 阅读(281) 评论(0) 推荐(0) 编辑
摘要: 动态 SQL 是 Mybatis 的强大特性之一,也是它优于其他 ORM 框架的一个重要原因。Mybatis 在对 sql 语句进行预编译之前,会对 sql 进行动态解析,解析为一个 BoundSql 对象,也是在此处对动态 SQL 进行处理的。在动态 SQL 解析阶段, #{ } 和 ${ } 会 阅读全文
posted @ 2018-05-30 13:48 花儿为何那样红 阅读(245) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/zht-blog/p/4033951.html 阅读全文
posted @ 2018-05-23 15:17 花儿为何那样红 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 1、控制器 or Model 2、数据迁移(Migration) 3、数据填充(Seeder) 4、路由 5、其他 阅读全文
posted @ 2018-05-23 14:43 花儿为何那样红 阅读(468) 评论(0) 推荐(0) 编辑
摘要: 若文件根目录下没有 .env 1、.env.example 改名使用命令 copy 修改为 .env 2、使用命令 php artisan key:generate 获取密码,自动保存到 .env3、将密码复制到config/app.php 中的key里面 4、重新运行,OK。 如有.env 的情况 阅读全文
posted @ 2018-05-22 11:17 花儿为何那样红 阅读(2349) 评论(0) 推荐(0) 编辑
摘要: 一:IDE 运行Application这个类的main方法 二:在springboot的应用的根目录下运行mvn spring-boot:run 三:使用mvn install 生成jar后运行 windows 后台运行 新建bat格式文件如下内容 阅读全文
posted @ 2018-05-02 12:14 花儿为何那样红 阅读(3208) 评论(0) 推荐(0) 编辑