learnbyexample to [email protected]English • 1 year agoClearing The Deque (exploring Python's deque data structure through a picture story)thepythoncodingstack.substack.comexternal-linkmessage-square3fedilinkarrow-up110arrow-down10
arrow-up110arrow-down1external-linkClearing The Deque (exploring Python's deque data structure through a picture story)thepythoncodingstack.substack.comlearnbyexample to [email protected]English • 1 year agomessage-square3fedilink
minus-square@wosatlinkEnglish5•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.