有没有什么好的C++后缀 Trie 库?

发布于 2024-11-09 07:55:51 字数 108 浏览 0 评论 0原文

有谁知道一个真正坚如磐石的 C++ 后缀尝试库吗?除了《哑剧》里的那个以外?
理想情况下,我想要:
并发的一些概念。
良好的缓存行为。
许可许可。
支持任意字母。

Does anyone know of a really rock solid C++ library for suffix tries? Other than the one in Mummer?
Ideally, I'd like:
Some concept of concurrency.
Good caching behavior.
Permissive license.
Support for arbitrary alphabets.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

晚风撩人 2024-11-16 07:55:51

作为一名生物信息学家,我的选择是 SeqAn (查看 序列索引部分)。它实现了惰性后缀树和增强型后缀数组(等效的数据结构),两者都具有良好的缓存行为。

Being a bioinformatician, my pick would be SeqAn (check out the sequence index section). It implements a lazy suffix tree and an enhanced suffix array (an equivalent data structure), both of which have good cache behaviour.

美男兮 2024-11-16 07:55:51

实际使用过 PATL,然后忘记了,我想在答案中添加一个链接。
http://code.google.com/p/patl/
它有几个非常独特的功能,而且通常读起来也很愉快。

Having actually used and then forgotten PATL, I'd like to tuck in a link in an answer.
http://code.google.com/p/patl/
It's got a couple really distinct features, and is generally pleasant reading as well.

翻了热茶 2024-11-16 07:55:51

这很可能是一个教程,但 IMO 值得阅读并带有源代码:http://marknelson。 us/1996/08/01/suffix-trees

Most likely this is a tutorial but IMO worth reading and with source code: http://marknelson.us/1996/08/01/suffix-trees.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文