Question

    When implementing a stack using two queues, what is the time complexity of the "push" operation?

    A O(1) Correct Answer Incorrect Answer
    B O(n) Correct Answer Incorrect Answer
    C O(log n) Correct Answer Incorrect Answer
    D O(n log n) Correct Answer Incorrect Answer

    Solution

    O(n)

    Practice Next

    Relevant for Exams:

    ×
    ×