通用后缀树 Java 实现

发布于 2024-07-24 07:57:12 字数 1542 浏览 10 评论 0原文

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

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

发布评论

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

评论(5

我ぃ本無心為│何有愛 2024-07-31 07:57:12

尝试语义发现工具包。 它在 text/src/java/org/sd/text/radixtree 上有一个实现

Try The Semantic Discovery Toolkit. It has an implementation on text/src/java/org/sd/text/radixtree

从﹋此江山别 2024-07-31 07:57:12

我用 Java 创建了一个后缀树,它允许您轻松添加自己的搜索功能和其他匹配算法。 我的博客文章 Java 中的后缀树 ,具有概述以及下载最新版本的说明。 我的 Java 实现基于 Mark Nelson 的 使用后缀树进行快速字符串搜索 文章。

更新 2023 年 4 月 1 日

I created a suffix tree in Java that allows you easily add your own search functionality and other matching algorithms. My blog post, Suffix Trees in Java, has an overview as well as instructions for downloaded the latest version. My Java implementation is based on Mark Nelson's Fast String Searching With Suffix Trees article.

Update 2023-04-01

子栖 2024-07-31 07:57:12

There is a Java implementation of a Non-General Suffix Tree is available at: http://illya-keeplearning.blogspot.com/2009/04/suffix-trees-java-ukkonens-algorithm.html

浸婚纱 2024-07-31 07:57:12

您可以在此处找到 Java 中的通用后缀树 的实现。
我尝试尽可能多地记录它,所以你可能会发现它有用。

You can find an implementation of a Generalized Suffix Tree in Java here.
I tried to document it as much as I could, so you might find it useful.

放赐 2024-07-31 07:57:12

这是我的 SuffixTree 实现:
https://github.com /losvald/sglj/blob/master/src/main/java/org/sglj/util/PATTrie.java

除此之外,它支持在节点中存储任意数据,并查找与前缀关联的值集。

Here is my implementation of SuffixTree:
https://github.com/losvald/sglj/blob/master/src/main/java/org/sglj/util/PATTrie.java

Among other things, it supports storing arbitrary data in nodes, and finding the set of values associated with the prefix.

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