python中使用链表实现出队
我使用 python 中的简单列表实现了 Dequeue。但是我需要为链表实现一个单独的类并用它实现出队。对于该指针,需要在左端和右端进行引用。我不知道该怎么做。有些机构可以提供一些参考或实现吗?
I implemented a Dequeue using a simple list in python. However i need to implement a separate class for linked list and implement dequeue with that. For this pointer reference is needed at left and right ends. I don't know how to do this. Can some body provide some references or implementations..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你有什么理由不只使用图书馆里的那本吗? http://docs.python.org/library/collections.html
Any reason you're not just using the one from the library? http://docs.python.org/library/collections.html