====== Algorithm 算法 ====== * [[https://www.wikiwand.com/en/List_of_algorithms|List of Algorithms]] * 以前做的一个粗糙的未完成的[[http://blog.joak.org/ppt/clrs.html|CLRS笔记]] * [[.:algorithm:clrs]] * [[http://bindog.github.io/blog/2014/08/09/visualizing-algorithms/|算法可视化]] * [[https://bost.ocks.org/mike/algorithms/|Visualizing Algorithms]] * [[https://visualgo.net/en|visualising data structures and algorithms through animation]] * [[https://cp-algorithms.com/index.html|Algorithms for Competitive Programming]] 英文电子书, c++ * https://arxiv.org/abs/2501.02305 据说这篇论文论证了一个新哈希表,不使用传统的 uniform probing 方法,而是使用了一种新的方法,可以在最坏的情况下以\((log x)^2\) 的时间复杂度找到元素,这比以前认为的最优时间复杂度 x 要快得多。