2026-04-22 | algorithms | #algorithms #sorting #hashing #simd #compiler #data-structures
汇总本站算法工程相关文章,覆盖排序、哈希、树、字符串、近似数据结构、SIMD、随机化与编译器相关算法。
2025-08-20 | network | #load-balancing #algorithms #consistent-hashing #p2c #scheduling
系统讲解负载均衡算法的数学原理与工程实现:Round Robin 及加权变体、Least Connection 及其局限、一致性哈希在 LB 中的应用、P2C(Power of Two Choices)的概率优势,以及真实负载下的算法性能对比与选型。
2025-07-15 | algorithms | #data-structures #algorithms #persistent-data-structures #functional-programming #version-control
持久化数据结构原理与实现:探索 undo/redo、MVCC、Git 等系统背后的数据结构设计模式
2025-07-15 | algorithms | #algorithms #binary-search #search-algorithms #data-structures #C
二分查找算法详解:原理、实现、变种及常见错误分析,O(log n) 时间复杂度的高效搜索算法
2025-07-15 | algorithms | #algorithms #heavy-hitters #streaming-algorithms #data-mining #big-data
Heavy Hitters 算法:如何高效计算高频数据项,在流式数据处理和热门页面统计中的应用
2025-07-15 | algorithms | #algorithms #string-matching #kmp #boyer-moore #pattern-matching
字符串匹配算法深度解析:KMP 和 Boyer-Moore 算法原理、实现与性能对比
2026-04-03 | system-design | #distributed-systems #consistent-hashing #load-balancing #scalability #algorithms
一致性哈希算法原理与应用:分布式系统负载均衡与数据分片的核心技术
2026-04-03 | system-design | #rate-limiting #system-design #api-gateway #traffic-control #algorithms
限流器设计与实现:令牌桶、漏桶算法及分布式限流方案