/images/avatar.png

Schaepher's Blog

UML 用例图

磨刀不误砍柴工 —— 2022.05~07

在上一篇文章中,我记录了两个身体上没有解决的问题。其中眼睛的问题在 6 月 19 日已经恢复了,胃胀也在眼睛恢复的这段时间消失了。除此之外,个人状态在 7 月也有一定的恢复,下文详说。

在个人微信上与自搭服务端交互

背景

我有时候想捣鼓个工具用。起初是为了让我及时掌握一些信息,想做一个消息推送功能。但是由于功能简单,不想单独开发个手机 APP。于是就想着能否直接把消息推送到个人微信上。

MySQL InnoDB 并发控制之 MVCC

MySQL 的多版本并发控制(Multiversion Concurrency Control,MVCC)解决了 InnoDB 事务隔离级别中读已提交和可重复读的读和写冲突问题。MVCC 使事务中执行普通的 SELECT 读取数据不需要对记录加锁,同时又能根据需要避免脏读、不可重复读、幻读的问题,提高了系统整体效率。

红黑树

2-3 树和 2-3-4 树统称为 B-树(Balanced Tree)。

为什么不直接使用 B-树?

既然以 2-3 树和 2-3-4 树都可以用来转换成红黑树,为什么最终使用 2-3-4 树的转换呢?

https://stackoverflow.com/questions/8765558/why-dont-we-use-2-3-or-2-3-4-5-trees

Implementation of 2-3-4 trees typically requires either multiple classes (2NODE, 3NODE, 4NODE) or you have just NODE that has an array of items. In the case of multiple classes you waste lots of time constructing and destructing node instances and reparenting them is cumbersome. If you use a single class with arrays to hold items and children then you are either resizing arrays constantly which is similarly wasteful or you wind up wasting over half your memory on unused array elements. It’s just not very efficient compared to Red-Black trees.