摘要: 第二高的薪水 # Write your MySQL query statement below --排序后用limit找到第二条数据 --ifnull函数为了观看直观并且拼凑null的情况 --distinct为了避免相同工资都参与排序的情况 select ifnull((select distin 阅读全文
posted @ 2020-01-03 11:29 小傻孩丶儿 阅读(110) 评论(0) 推荐(0) 编辑
摘要: /* * 给定两个大小为 m 和 n 的有序数组 nums1 和 nums2。 请你找出这两个有序数组的中位数,并且要求算法的时间复杂度为 O(log(m + n))。 你可以假设 nums1 和 nums2 不会同时为空。 示例 1: nums1 = [1, 3] nums2 = [2] 则中位数 阅读全文
posted @ 2020-01-03 10:55 小傻孩丶儿 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 表1: Person + + + | 列名 | 类型 | + + + | PersonId | int | | FirstName | varchar | | LastName | varchar | + + + PersonId 是上表主键 表2: Address + + + | 列名 | 类型 阅读全文
posted @ 2020-01-02 14:08 小傻孩丶儿 阅读(98) 评论(0) 推荐(0) 编辑
摘要: import java.util.HashMap; import java.util.Map; /* * Given a string, find the length of the longest substring without repeating characters. Example 1: 阅读全文
posted @ 2020-01-02 13:22 小傻孩丶儿 阅读(187) 评论(0) 推荐(0) 编辑
摘要: /** * 给出两个 非空 的链表用来表示两个非负的整数。其中,它们各自的位数是按照 逆序 的方式存储的,并且它们的每个节点只能存储 一位 数字。 * * 如果,我们将这两个数相加起来,则会返回一个新的链表来表示它们的和。 * * 您可以假设除了数字 0 之外,这两个数都不会以 0 开头。 * * 阅读全文
posted @ 2020-01-02 13:17 小傻孩丶儿 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 刷题顺序:https://cspiration.com/leetcodeClassification 题目解析:通过结果与当前值做差与剩余的数字对比,如果相等则存在俩数之和等于结果;这里选择map这种数据结构,key存值,value记录位置。 import java.util.LinkedHashM 阅读全文
posted @ 2019-12-31 14:16 小傻孩丶儿 阅读(169) 评论(0) 推荐(0) 编辑
摘要: jpa子查询 子查询 //select * from A where employeeGid in (select * from B where readerGid = 'xxxx')//子查询 fromSubquery<ReaderEmployeeRelationModel> subQuery = 阅读全文
posted @ 2019-12-30 18:02 小傻孩丶儿 阅读(459) 评论(0) 推荐(0) 编辑
摘要: body { color: #000; background: url(http://www.cnblogs.com/skins/MountainInk/top.jpg) fixed; background-size: cover; background-repeat: repeat; font-f 阅读全文
posted @ 2019-12-25 15:29 小傻孩丶儿 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 二刷对一些常见的算法有了一些系统性的认识,对于算法的时间复杂度以及效率有了优化的意识,对于简单题和中等题目不再畏惧。三刷加油 阅读全文
posted @ 2019-12-24 13:45 小傻孩丶儿 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 洗牌算法题目 import java.util.Random;/** * Shuffle a set of numbers without duplicates. * * Example: * * // Init an array with set 1, 2, and 3. int[] nums = 阅读全文
posted @ 2019-12-23 16:46 小傻孩丶儿 阅读(456) 评论(0) 推荐(0) 编辑
摘要: Bit Manipulation Find the Difference /* * Given two strings s and t which consist of only lowercase letters.String t is generated by random shuffling  阅读全文
posted @ 2019-12-20 15:37 小傻孩丶儿 阅读(239) 评论(0) 推荐(0) 编辑
摘要: C语言中<<、>>、&、|的实际用途 作为一个开发人员,在看别人项目或者看第三方库的源代码时,可能经常会看到譬如a>>4&0x0f这样的写法,对于一些初入行的童鞋来说可能就不是太明白这是什么意思。下面我们就来讲解这几个运算符的实际用途。 一、运算符的含义 运算符含义描述 << 左移 用来将一个数的各 阅读全文
posted @ 2019-12-20 13:46 小傻孩丶儿 阅读(1196) 评论(0) 推荐(0) 编辑
摘要: 备胎算法 假设有三男(分别是 A ,B ,C )和三女(分别是 x,y ,z ),他(她)们对异性的心仪程度如对话框所示。 比如对于男 A 来说,心仪对象排名为 x 排第一,y 排第二,z 排第三。 今天是特殊节日,你化身为丘比特,来设计一个算法分配对象。 立即接受算法 下面以男生主动追求对象为例来 阅读全文
posted @ 2019-12-20 13:04 小傻孩丶儿 阅读(151) 评论(0) 推荐(0) 编辑
摘要: Archunit的使用 注:开发的编辑器: Intellij Idea,JDK版本是JDK8 Archunit是什么,官网的英文介绍很好,建议阅读原文,"ArchUnit is a free, simple and extensible library for checking the archit 阅读全文
posted @ 2019-12-20 08:59 小傻孩丶儿 阅读(890) 评论(0) 推荐(0) 编辑
摘要: 二分查找-leetcode /** * * 278. First Bad Version * * You are a product manager and currently leading a team to develop a new * product. Unfortunately, the 阅读全文
posted @ 2019-12-19 16:51 小傻孩丶儿 阅读(278) 评论(0) 推荐(0) 编辑
摘要: 由异常:Repeated column in mapping for entity/should be mapped with insert="false" update="false 引发对jpa关联的思考 首先说一下以上问题的解决方法 //主键列 显示指定只读 --这块是解决该文的代码@Colu 阅读全文
posted @ 2019-12-18 15:47 小傻孩丶儿 阅读(1340) 评论(0) 推荐(0) 编辑
摘要: 20191217-关于JPA @Query查询数据一直为空,直接在数据库里执行SQL则可以查出来 前提:数据库中查询,由于在视图中无主键概念,只是在代码中由逻辑主键。结果:数据中作为逻辑主键中有个字段为空,导致结果集赋值到实体出错,结果集为null 阅读全文
posted @ 2019-12-17 16:13 小傻孩丶儿 阅读(2559) 评论(0) 推荐(0) 编辑
摘要: --都是之前各位大佬总结好的,我只是肤浅的汇总一下,结合我犯得错误,适合像我一样的萌新看 第一:@Transcation 引入的注解 package org.springframework.transaction.annotation; 首先说一下这个注解生效的条件: 第一:如果在方法上,该方法为公 阅读全文
posted @ 2019-12-12 13:43 小傻孩丶儿 阅读(243) 评论(0) 推荐(0) 编辑
摘要: 参考文章 https://blog.csdn.net/u013309870/article/details/75193592https://blog.csdn.net/baidu_28312631/article/details/47418773 动态规划 凡是可以大事化小的都可以用动态规划一般解题 阅读全文
posted @ 2019-12-12 11:21 小傻孩丶儿 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 1:mysql b/b+tree的结构 索引的类型 索引的使用 2:看算法视频 总结文章 3:线程相关知识 4:jdk尝见的问题 阅读全文
posted @ 2019-12-10 17:10 小傻孩丶儿 阅读(102) 评论(0) 推荐(0) 编辑