摘要: 我的LeetCode:https://leetcode cn.com/u/ituring/ 我的LeetCode刷题源码[GitHub]:https://github.com/izhoujie/Algorithmcii LeetCode 面试题 17.16. 按摩师 题目 一个有名的按摩师会收到源源 阅读全文
posted @ 2020-03-24 21:41 图灵的图,图灵的灵。 阅读(348) 评论(0) 推荐(0) 编辑
摘要: 我的LeetCode:https://leetcode cn.com/u/ituring/ 我的LeetCode刷题源码[GitHub]:https://github.com/izhoujie/Algorithmcii LeetCode 876. 链表的中间结点 题目 给定一个带有头结点 head  阅读全文
posted @ 2020-03-23 00:29 图灵的图,图灵的灵。 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 我的LeetCode:https://leetcode cn.com/u/ituring/ 我的LeetCode刷题源码[GitHub]:https://github.com/izhoujie/Algorithmcii LeetCode 945. 使数组唯一的最小增量 题目 给定整数数组 A,每次 阅读全文
posted @ 2020-03-22 21:37 图灵的图,图灵的灵。 阅读(301) 评论(0) 推荐(0) 编辑
摘要: 我的LeetCode:https://leetcode cn.com/u/ituring/ 我的LeetCode刷题源码[GitHub]:https://github.com/izhoujie/Algorithmcii LeetCode 365. 水壶问题 题目 有两个容量分别为 x升 和 y升 的 阅读全文
posted @ 2020-03-21 15:49 图灵的图,图灵的灵。 阅读(431) 评论(0) 推荐(0) 编辑
摘要: 我的LeetCode:https://leetcode cn.com/u/ituring/ 我的LeetCode刷题源码[GitHub]:https://github.com/izhoujie/Algorithmcii LeetCode 面试题40. 最小的k个数 题目 输入整数数组 arr ,找出 阅读全文
posted @ 2020-03-20 17:51 图灵的图,图灵的灵。 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 我的LeetCode:https://leetcode cn.com/u/ituring/ 我的LeetCode刷题源码[GitHub]:https://github.com/izhoujie/Algorithmcii LeetCode 409. 最长回文串 题目 给定一个包含大写字母和小写字母的字 阅读全文
posted @ 2020-03-19 12:58 图灵的图,图灵的灵。 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 我的LeetCode:https://leetcode cn.com/u/ituring/ 我的LeetCode刷题源码[GitHub]:https://github.com/izhoujie/Algorithmcii LeetCode 836. 矩形重叠 题目 矩形以列表 [x1, y1, x2, 阅读全文
posted @ 2020-03-18 15:33 图灵的图,图灵的灵。 阅读(216) 评论(0) 推荐(0) 编辑
摘要: Java中常见到的aop就这三种了:SpringAOP、AspectJ、CGlib 1. SpringAOP是纯基于Java的反射机制来实现的,速度较慢但是通用且强大,只能基于接口实现aop代理增强,运行时动态执行; 2. AspectJ是基于AOP这一哲学设计理念的实践,是基于Java的扩展,在编 阅读全文
posted @ 2020-03-17 19:47 图灵的图,图灵的灵。 阅读(296) 评论(0) 推荐(0) 编辑
摘要: 看了很多的Springboot的启动流程分析,自己跟着源码看了一遍还是决定自己再写个流程; 基于Springboot2.1.8版本 流程步骤可能跟其他人的分析有出入,但是以理解为主,理解了你觉得是几步那就是几步 本文大致分三段:详细步骤总结、简化步骤总结、源码分步骤跟进分析 先写详细总结(下有简化版 阅读全文
posted @ 2020-03-17 19:04 图灵的图,图灵的灵。 阅读(836) 评论(0) 推荐(0) 编辑
摘要: Hibernate中忽略指定字段 为指定字段添加 transient 关键字 Mybatis Plus 为指定字段添加 @TableField(exist = false) 注解 Mybatis 暂未找到可以直接在字段上增加注解或关键字来解决的方法; 曲线救国:为特定sql配置特定的 sql 和 m 阅读全文
posted @ 2020-03-16 17:35 图灵的图,图灵的灵。 阅读(1155) 评论(0) 推荐(0) 编辑