2023年12月31日

摘要: 1.定义 一款高性能的WEB、RPC框架,构建企业级微服务 2.演变历程 单体架构 > 横向扩展 > 垂直架构 > RPC架构 (解决了我的一些疑惑) > SOA架构 > 微服务架构 (微服务架构和SOA架构,目前基本二者已经概念统一了) RPC架构 :1.垂直架构演变而来, 解决子系统间模块的调用 阅读全文

posted @ 2023-12-31 16:21 Nonur 阅读(2) 评论(0) 推荐(0) 编辑

2023年6月17日

摘要: https://blog.csdn.net/weixin_44170221/article/details/105206356 idea:Server returns invalid timezone Go to 'Advanced' tab and set 'serverTimezone' pro 阅读全文

posted @ 2023-06-17 23:34 Nonur 阅读(24) 评论(0) 推荐(0) 编辑

2023年5月11日

摘要: 补 阅读全文

posted @ 2023-05-11 14:35 Nonur 阅读(4) 评论(0) 推荐(0) 编辑

2023年4月26日

摘要: 1.数组求最大值最小值 Math.min(...list); Math.max(...list); 还有种方法 1 Math.min.apply(null,arr); 2 Math.max.apply(null,arr); https://www.cnblogs.com/snowbxb/p/1139 阅读全文

posted @ 2023-04-26 13:52 Nonur 阅读(9) 评论(0) 推荐(0) 编辑

2023年4月24日

摘要: 补题目: LeetCode 1163: 按字典序排在最后的字串。 阅读全文

posted @ 2023-04-24 16:42 Nonur 阅读(8) 评论(0) 推荐(0) 编辑

2023年4月20日

摘要: 补 https://blog.csdn.net/weixin_53029342/article/details/125668555 阅读全文

posted @ 2023-04-20 16:13 Nonur 阅读(13) 评论(0) 推荐(0) 编辑

2023年4月18日

摘要: 补 阅读全文

posted @ 2023-04-18 16:40 Nonur 阅读(21) 评论(0) 推荐(0) 编辑

2023年4月10日

摘要: 补 1.视野总和 739.每日温度 package monotoneStack; import org.junit.Test; import java.util.Stack; /** * @description: * @author: weitao_wang * @date: 2023/4/20 阅读全文

posted @ 2023-04-10 17:27 Nonur 阅读(8) 评论(0) 推荐(0) 编辑

摘要: https://blog.csdn.net/abaidaye/article/details/123446380 延伸: **TopK问题** https://blog.csdn.net/m0_38089031/article/details/108111231 阅读全文

posted @ 2023-04-10 16:43 Nonur 阅读(2) 评论(0) 推荐(0) 编辑

摘要: 一般解法,面试必踢 class MedianFinder { /** initialize your data structure here. */ List<Integer> list; public MedianFinder() { list = new ArrayList<>(); } pub 阅读全文

posted @ 2023-04-10 16:24 Nonur 阅读(12) 评论(0) 推荐(0) 编辑