Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Steque

A stack-ended queue or steque is a data type that supports push, pop, and enqueue.

Pop Push Enqueue
O(1) O(1) O(1)
struct Steque<T> {
    private let linkedList = LinkedList<T>()

    mutating func pop() -> T? {
        return linkedList.removeHead()?.value
    }

    mutating func push(_ value: T) {
        linkedList.appendHead(value)
    }

    mutating func enqueue(_ value: T) {
        linkedList.appendTail(value)
    }
}