learnbyexample@programming.dev to Python@programming.devEnglish · 1 year agoClearing The Deque (exploring Python's deque data structure through a picture story)thepythoncodingstack.substack.comexternal-linkmessage-square3fedilinkarrow-up111arrow-down10
arrow-up111arrow-down1external-linkClearing The Deque (exploring Python's deque data structure through a picture story)thepythoncodingstack.substack.comlearnbyexample@programming.dev to Python@programming.devEnglish · 1 year agomessage-square3fedilink
minus-squarewosat@lemmy.worldlinkfedilinkEnglisharrow-up5·1 year agoYou can use a deque as a stack (First In, Last Out) or as a queue (First In, First Out). Lists are especially inefficient when adding/removing from the beginning of the list, but, for deques, it’s a O(1) operation.
You can use a deque as a stack (First In, Last Out) or as a queue (First In, First Out). Lists are especially inefficient when adding/removing from the beginning of the list, but, for deques, it’s a O(1) operation.