广度优先探索的网络爬虫
我需要写一篇关于网络爬虫的论文,这个网络爬虫以广度优先的方式探索链接。
我制作了一张图片,展示了爬虫探索的方式。 这是正确的广度优先探索吗?:
I need to write a paper about a web crawler and this web crawler explores the links with breadth-first.
I've made a picture in which i demonstrate the way the crawler explores explores.
Is this correct breadth-first exploration?:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,它是广度优先,因为您要先查看一个“深度级别”的所有页面,然后再继续下一个页面。
Yes, it is breadth first since you are looking at all pages in one 'depth-level' before continuing onto the next.