正则表达式与 KMP
大家好,有人可以告诉我为什么我们在现代编程实践中不使用 Knuth Morris Pratt 算法而更喜欢正则表达式吗?
Hi can any one tell me why there we are not using Knuth Morris Pratt algorithms in modern programming practices and prefer regular expression more ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是否有不止一种 KMP 算法?我的理解是,有一种算法可以在另一个字符串中搜索一个字符串。正则表达式更加灵活 - 并且非常简单的正则表达式没有理由不能使用 KMP - 这取决于实现者。
Is there more than one KMP algorithm? My understanding is that there is one algorithm for performing a search for a string within another string. Regex is much more flexible - and there's no reason why a very simple regex expression couldn't use KMP - it's up to the implementor.