旅行推销员
在哪里可以找到旅行萨拉斯问题的源代码?
Where can I find source code for travelling salasman problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
在哪里可以找到旅行萨拉斯问题的源代码?
Where can I find source code for travelling salasman problem?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
无处可去,还没有解决。
nowhere, it's not been solved.
您曾提到超过 8 或 9 个节点时会遇到问题。这并不奇怪,因为随着每个添加的节点,复杂性呈指数级增加。
因此,许多解决方案都涉及遗传编程,以逐渐形成好的答案。找到最佳通常需要对所有可能性进行强力检查。
此处就是一个示例,它还提供了其源代码。
You had mentioned that you were having problems with more than 8 or 9 nodes. This isn't surprising because the complexity increases exponentially with each added node.
As a result many solutions involve Genetic programming to gradually evolve a good answer. Finding the best generally requires a brute-force check of all possibilities.
One example is here, which also provides their source code.