摘要: https://blog.csdn.net/IT_townlet/article/details/105353377 阅读全文
posted @ 2021-11-30 16:57 小傻孩丶儿 阅读(135) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_42982636/article/details/108221299 以下是构建的基础资料 代码地址 https://gitee.com/overyoul/springcloud-nacos?_from=gitee_search nacos 阅读全文
posted @ 2021-11-30 16:39 小傻孩丶儿 阅读(60) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/jiefu/p/12204555.html 容器停止后,要记得清除镜像 容器 阅读全文
posted @ 2021-11-30 15:49 小傻孩丶儿 阅读(39) 评论(0) 推荐(0) 编辑
摘要: ###在给定的数据中,找出缺失的数字 第一种:在给定的有序数组中,找到缺失的数字,只缺一个, 思路,累加数字到给定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) 编辑