为什么我们在集群网络中使用k-范数树
为什么网络拓扑中需要k-nomial树,它在广播方面比二叉树更快?
Why do we need k-nomial tree in network topology, it's faster than binary tree in terms of broadcast?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你在二叉树上进行广播,那么根在发送了两条消息后就处于空闲状态。在二项式树中,根有两个以上的邻居(而树的深度保持不变),因此节点在广播完成之前不会变得空闲。
If you do a broadcast on a binary tree, the root is idle after he sent two messages. In a binomial tree, the root has more than two neighbours (while the depth of the tree remains the same), therefore nodes don't become idle before the broadcast is finished.