链表链接到自身?
头节点和尾节点相互链接的链表类型结构有名称吗?在这样的列表中,您显然可以永远迭代它,因为它会自行返回。
Is there a name for a linked list type structure where the head and tail nodes link to each other? In such a list you can obviously iterate through it forever as it double backs on itself.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,它称为循环列表。
(Anders Hejlsberg 的 最喜欢的数据结构是一个循环链表)
Yes, it's called a circular list.
(Anders Hejlsberg's favorite data structure is a circular linked list)
通常称为循环链表
Generally known as a circular linked list