Java中后缀数组的实现
我正在寻找编写一个有效的 n 阶马尔可夫链方法来生成给定一组示例文本的随机文本字符串。我目前有一个使用多层地图的 Java 实现,但它很笨重。后缀数组非常适合我的需求,但我不清楚是否可以在 Java 中有效实现。
在 CI 中可能会做类似的事情:
char exampleText[MAX];
char *suffixArray[MAX];
...
while(n<MAX && suffixArray[n++] = &exampleText[n]);
sort(suffixArray);
这在 Java 中变得很粗糙,因为我必须获取 exampleText 的子字符串,或者将 suffixArray 转换为索引数组或其他东西。
有什么关于 Java 中的好方法的建议吗?
I'm looking to write an efficient n-order Markov chain method to generate random text strings given a set of example text. I currently have a Java implementation that uses several layers of Maps, but it's clunky. A suffix array would be perfect for my needs, but I'm not clear if that can be efficiently implemented in Java.
In C I might do something like:
char exampleText[MAX];
char *suffixArray[MAX];
...
while(n<MAX && suffixArray[n++] = &exampleText[n]);
sort(suffixArray);
This gets gnarly in Java since I'd have to take substrings of exampleText
, or turn suffixArray
into an array of indices, or something else.
Any suggestions for a good approach to this in Java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
String
[通常]会为您完成此操作。 (典型的实现在使用substring
创建时共享支持数组,尽管这可能随时发生变化。)String
will [typically] do that for you. (Typical implementations share backing arrays when created withsubstring
, although that is subject to change at any time.)对于任何对在 Java 中构建后缀数组的更有效方法感兴趣的人,我曾经使用过一个名为 jsuffixarrays 的库。代码位于此处。它提供了一系列构建算法可供选择,我发现它工作得很好。例如,要使用 SKEW 算法,您可以这样做:
如果不需要,您可以在没有 LCP 阵列的情况下构建。
For anyone interested in more efficient ways of constructing the suffix array in Java, I once used a library called jsuffixarrays. The code is here. It offers a range of construction algorithms to choose from and I found it to work very well. E.g. to use the SKEW algorithm you do this:
You can build without the LCP array if don't need that.
您可以从后缀数组中创建一些变体:
第一:
第二:
You can make some variants form array of suffixes:
First:
Second: