上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 34 下一页
摘要: ###在给定的数据中,找出缺失的数字 第一种:在给定的有序数组中,找到缺失的数字,只缺一个, 思路,累加数字到给定n,然后减去有序数组累加的和,然后就找到了 /** * 第一种,1-100中缺失一个数字,找出他是谁,数组 无需不重复 * 方法 1-100相加减去给定数字的结果 * * num是给定数 阅读全文
posted @ 2021-11-30 11:09 小傻孩丶儿 阅读(96) 评论(0) 推荐(0) 编辑
摘要: ###大数相加 比如远超long的数字相加,求其结果,需要用到数组,通过进位去实现 package algorithm.bignumbersum; public class BigNumberSum { /** * 字符数组翻转 * 12345 3 04 13 22 * 1234 2 03 12 * 阅读全文
posted @ 2021-11-30 10:25 小傻孩丶儿 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 护眼色 https://www.cnblogs.com/zh94/p/7769036.html 鼠标调整字体大小 https://blog.csdn.net/weixin_44199123/article/details/106255450 背景图片 地址 https://image.baidu.c 阅读全文
posted @ 2021-11-29 17:42 小傻孩丶儿 阅读(58) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/hejh/p/11276434.html 若输入java无反应,注意path路径上是否带 “” 若运行生成jre命令无反应,通过everything 找到jre,放到jdk目录下 阅读全文
posted @ 2021-11-29 15:01 小傻孩丶儿 阅读(323) 评论(0) 推荐(0) 编辑
摘要: ###删除k个数字是num最小 案例: 5 4 1 2 7 0 9 3 6 删掉一个数字后是 4 1 2 7 0 9 3 6 123456; //12345 0000 //0 package algorithm.removedigits; public class RemoveDIgits { /* 阅读全文
posted @ 2021-11-26 10:11 小傻孩丶儿 阅读(69) 评论(0) 推荐(0) 编辑
摘要: jenkins 安装 https://www.cnblogs.com/hkgov/p/14005625.html idea 集成jenkins https://www.cnblogs.com/shihuayun/p/7828579.html 如果IDEA 配置 jenkins——CSRF enabl 阅读全文
posted @ 2021-11-25 15:02 小傻孩丶儿 阅读(597) 评论(2) 推荐(0) 编辑
摘要: https://brands.cnblogs.com/aliyun/topic/impressive-bug-posts 阅读全文
posted @ 2021-11-25 11:14 小傻孩丶儿 阅读(16) 评论(0) 推荐(0) 编辑
摘要: ###求最大相邻数字 2,6,3,4,5,10,9 利用位图概念,讲最大值作为新数组长度,最小值作为偏移量,通过当前元素减去偏移量,放到位图里,设置为1,其他的设置为0 package algorithm.ispowerof2.getmaxsorteddistance; public class G 阅读全文
posted @ 2021-11-25 11:12 小傻孩丶儿 阅读(29) 评论(0) 推荐(0) 编辑
摘要: ###2的整数次幂次方 可以从二进制的角度考虑 4的二进制 0100 4-1的二进制 0011 那么4&(4-1) 0100 & 0011 = 0000,这就是规律, package algorithm.ispowerof2; public class IsPowerOf2 { /** * 判断一个 阅读全文
posted @ 2021-11-24 09:48 小傻孩丶儿 阅读(123) 评论(0) 推荐(0) 编辑
摘要: ###常见算法题目 链表,环形链表, 栈道 求入栈的最小值 实现队列 求最大公约数 利用位运算化简,然后利用数学公式求解 求排序后当前无序队列相邻的最大差值(不可以排序) 数组或者桶排序 求比当前数字大的最小全排列数字 逆排序 顺序排序 12345 12354 12435 a星搜索 以用户为中心的标 阅读全文
posted @ 2021-11-23 22:01 小傻孩丶儿 阅读(10) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-11-23 17:23 小傻孩丶儿 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 栈 先进后出 ###实现出栈入栈以及获取栈中最小值,主要是获取最小值 package algorithm.getminstack; import java.util.Stack; public class getMinStatck { private static Stack<Integer> ma 阅读全文
posted @ 2021-11-23 17:10 小傻孩丶儿 阅读(61) 评论(0) 推荐(0) 编辑
摘要: ###辗转相除法 俩个正整数的最大公约数等于他们的余数和较小数之间的最大公约数 package gcl; public class Gcl_1 { /** * 求最大公约数 转转相除法 * * 缺点 取余操作效率低 */ public static int gcl(int a,int b){ int 阅读全文
posted @ 2021-11-22 23:13 小傻孩丶儿 阅读(670) 评论(0) 推荐(0) 编辑
摘要: 1 确定电脑是否有插第二内存条的口 2 确定内存类型 ddr4? 2400? 3 去咸鱼买对应的内存条,确定一定是笔记本类型的 阅读全文
posted @ 2021-11-22 11:20 小傻孩丶儿 阅读(1021) 评论(0) 推荐(0) 编辑
摘要: 参考,图灵性能调优-并发-源码框架-分布式-微服务-项目实战-互联网工程;之后就是专项补充 阅读全文
posted @ 2021-11-22 10:45 小傻孩丶儿 阅读(43) 评论(2) 推荐(0) 编辑
摘要: 最基础的crud已经可以框架替代 复杂的逻辑 需要良好的算法思维支持 技术更新迭代日新月异,底层确实很少变更,如何学习显而易见 阅读全文
posted @ 2021-11-22 10:21 小傻孩丶儿 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 例如 三星 t5 ssd 500g ,3.1 兼容3.0,机器本身串口看 串行总线后面的数字。 如果要提升idea启动速度,可以加完固态后,调整 vmoptions的 xms smx 阅读全文
posted @ 2021-11-22 10:19 小傻孩丶儿 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 链表是否有环 7<-6 (向下)v ^(向上) 1->2->3->4->5 如何判断链表是否有环,可以通过快慢指针的方式,比如 快一次走俩格,慢指针一次走一格,当存在环时,快慢指针最终会在环里相遇。 package algorithm; public class Circle { public st 阅读全文
posted @ 2021-11-19 17:37 小傻孩丶儿 阅读(10) 评论(0) 推荐(0) 编辑
摘要: windows任务栏IDEA图标变白色快速解决方法 方案1:同时按Windows键+R键打开运行对话框,输入ie4uinit.exe -show然后回车即可修复。 方案2:打开计算机(Win7),此电脑(Win10)或任意文件夹,然后在地址栏输入cmd.exe /c ie4uinit.exe -sh 阅读全文
posted @ 2021-11-19 16:12 小傻孩丶儿 阅读(574) 评论(0) 推荐(0) 编辑
摘要: 需要掌握的技术 多线程: thread runable sychronized: 锁升级,对象头(细说),优点, wait notify lock:公平、非公平,lock/unlock ,await signal aqs 死锁如何产生,如何避免,分布式锁实现-redis setnx,redisson 阅读全文
posted @ 2021-11-06 11:58 小傻孩丶儿 阅读(117) 评论(3) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 34 下一页