dubbo-spi
Java SPI
官网上有这么一段描述:
An extensible application is one that you can extend without modifying its original code base. You can enhance its functionality with new plug-ins or modules. Developers, software vendors, and customers can add new functionality or application programming interfaces (APIs) by adding a new Java Archive (JAR) file onto the application class path or into an application-specific extension directory.
大致翻译一下就是动态扩展的意思了—-🐂🍺就完了,翻译啥翻译。
官方文档地址:官方SPI介绍
经典排序
发表于
|
分类于
算法
前不久看到十大经典排序的动画,感觉挺震撼的,巴拉巴拉老东西写点东西。链接在此 经典排序算法动画
排序算法 - sort algorithm
- 比较类排序:通过比较来决定元素间的相对次序,由于其时间复杂度不能突破O(nlogn),因此也称为非线性时间比较类排序。
- 非比较类排序:不通过比较来决定元素间的相对次序,它可以突破基于比较排序的时间下界,以线性时间运行,因此也称为线性时间非比较类排序。
相关大O的复杂度之前记载过,这里也忘记个差不多了。算法空间复杂度和时间复杂度
晚些增加对算法的理解,会比较有趣。
dubbo-base
mq-base
AMQP
mq是你妈,说啥就干啥
base
https://www.jianshu.com/p/689ce4205021
http://www.dockone.io/article/505