摘要: org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.executor.ExecutorException: A query was run and no Result Maps were f 阅读全文
posted @ 2021-05-19 20:00 白清欢 阅读(594) 评论(0) 推荐(0) 编辑
摘要: 210. 课程表 II 拓扑排序, BFS 对于入度为0的节点入队列。 出栈时,记录,将对应的节点入度减一。 判断出栈的节点是否是全部节点。 public int[] findOrder(int numCourses, int[][] prerequisites) { int[] input = n 阅读全文
posted @ 2021-05-19 16:37 白清欢 阅读(46) 评论(0) 推荐(0) 编辑
摘要: << 表示左移移,不分正负数,低位补0; >> 表示右移,如果该数为正,则高位补0,若为负数,则高位补1; >>> 表示无符号右移,也叫逻辑右移,即若该数为正,则高位补0,而若该数为负数,则右移后高位同样补0 阅读全文
posted @ 2021-05-19 16:30 白清欢 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 下载安装MySQL(详情) 登录 mysql -uroot -p 初始化数据库 create database community; 显示数据库 show database; 使用数据库 use community; 初始化表格使用脚本 source D:/source/init_schema.sq 阅读全文
posted @ 2021-05-19 15:29 白清欢 阅读(67) 评论(0) 推荐(0) 编辑