必須有可能遍歷一個列表,刪除元素並以高效的方式向開頭添加一些新元素。在C中,我將使用鏈表,在python中遍歷一個deque?
-3
A
回答
1
Python中有很多LinkedList實現的例子。我偶然發現了一個很好的... Python Linked List。如果你向下滾動一些,其他一些用戶有一些好的實現要遵循。
相關問題
- 1. 遍歷在Python
- 2. 遍歷在Python
- 3. 遍歷在Python
- 4. 遍歷在Python
- 5. 遍歷在Python
- 6. 在Python中預先遍歷
- 7. 在Python中遍歷XML
- 8. Python:遍歷一組符號
- 9. Python - 遍歷類
- 10. 樹遍歷python
- 11. 在Python中遍歷n遍歷樹並返回節點實例
- 12. 在x86中遍歷一個向量?
- 13. 在PHP中循環遍歷一個JSON
- 14. 在Ruby中遞歸遍歷一個Hash
- 15. 遍歷兩個字典Python中
- 16. 遍歷多個列表,並在Python
- 17. Python中的InOrder遍歷
- 18. 遍歷硒python中的類
- 19. 遍歷Python中的JSON
- 20. 如何遍歷在Python
- 21. 遍歷與LXML XML在Python
- 22. 如何遍歷在Python
- 23. 在python遍歷計數對
- 24. 在Python中一次遍歷字符串2(或n)個字符
- 25. 在python中循環遍歷一個表reportlab
- 26. 我如何在python中一次遍歷多個2d列表?
- 27. 在Python中一次遍歷2個列表
- 28. 在Python中一次遍歷三個列表?
- 29. Python的 - 遍歷list.append
- 30. 遍歷列表python
你的意思是[collections.deque](http://docs.python.org/library/collections.html#collections.deque)? – jfs 2012-07-28 23:09:40
是的 - 這是可能的。你試過什麼了? – 2012-07-28 23:18:19
是的,我的意思是collections.deque。我想通過它刪除一些元素並偶爾添加一些到開頭。 – warsaga 2012-07-29 19:49:22