使用 Damerau Levenshtein 算法进行抄袭检测
我将如何模拟damerau leveshtein距离算法以检测文档中的抄袭行为?谢谢!
how will i simulate the damerau leveshtein distance algorithm so as to detect plagiarism in documents? thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编辑距离主要用于比较两个字符串,例如比较名称或在拼写检查器中查找替代项。对整个文档使用此算法来检测抄袭并不常见。
不过该地区还有一些工作。一切都指向这篇文章,需要订阅:
使用 Levenshtein 距离和 Smith-Waterman 算法进行剽窃检测
http://www.computer.org/portal/web/csdl/doi/10.1109/ICICIC.2008.422
Levenshtein distance is primarily used to compare two strings, such as comparing names or finding alternates in a spell checker. Using this algorithm for a whole document to detect plagiarism is not typical.
There is some work in the area though. Everything points to this article, which requires subscription:
Plagiarism Detection Using the Levenshtein Distance and Smith-Waterman Algorithm
http://www.computer.org/portal/web/csdl/doi/10.1109/ICICIC.2008.422