Will the book continue to add new content chapters?
如题
本书第一版的内容已稳定下来,之后会逐步添加一些新的内容,例如(仍未确定)单调栈、希尔排序、红黑树、KMP 算法、拓扑排序、LRU 缓存等。如果有感兴趣的内容,欢迎反馈
本书第一版的内容已稳定下来,之后会逐步添加一些新的内容,例如(仍未确定)希尔排序、红黑树、KMP 算法、拓扑排序等。如果有感兴趣的内容,欢迎反馈
我建议这些都写一下,对于小白很有用⭐
可以增加一些调表的部分,如果能够在当前开源项目如redis,mongo等中,有实际的使用算法和数据结构的案例就更好了,有利于激发学习兴趣,而且可以提高工作的效率和认知。感谢作者,提供了这么好的一个平台!
可以添加一部分计算机视觉以及NLP等相关的无人驾驶实战部分吗?期待作者的加更,表示感谢作者们,祝福一切都好。
本书第一版的内容已稳定下来,之后会逐步添加一些新的内容,例如(仍未确定)单调栈、希尔排序、红黑树、KMP 算法、拓扑排序、LRU 缓存等。如果有感兴趣的内容,欢迎反馈
I suggest that we can add more introductions to data structures and algorithems like:
1. Some simple and really useful data structures
- Trie
- 并查集
2. Datastructures with optimization for concurrency
In Leetcode and XCPC, programs run in single-thread. But, in real life, concurrency-oriented programming is also really important.
- lock free datastructures: lockfree list, lockfree queue, lockfree hashtable, etc.
- copy-on-write datastructures: copy-on-write trie, copy-on-write b-tree (等一系列可持久化数据结构)
- some datastructures which may not work very well with single thread, but might have performance benefits in concurrency programming: skip list
- and other concurrency optimization, for example, latch crabbing, global-localthread cache, etc.
本书应该是只收录ACM算法
---- 回复的原邮件 ---- | 发件人 | XIAOLIN @.> | | 发送日期 | 2024年4月4日 20:33 | | 收件人 | @.> | | 抄送人 | @.>, @.> | | 主题 | Re: [krahets/hello-algo] 请问本书还会继续考虑增加新的内容章节吗? (Issue #1086) |
可以添加一部分计算机视觉以及NLP等相关的无人驾驶实战部分吗?期待作者的加更,表示感谢作者们,祝福一切都好。
— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: @.***>
希望加入高精度模拟部分
希望加入位运算部分
希望加入 Trie (字典树) 结构教程。
希望可以补充B+树、红黑树、跳表数据结构的讲解
Merged from #1302 by @Keyboard-Maaaan
图的章节里希望补充:最小生成树相关知识
Merged #1342
在2.3时间复杂度中建议补充时间复杂度类型根号阶
Merged #1292
希望加入文件处理章节,并优化时间、空间复杂度解析(加入“O(log n”)等