Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In
Continue with Google
or use

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here
Continue with Google
or use

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

Sorry, you do not have permission to ask a question, You must login to ask a question.

Continue with Google
or use

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

Answerclub

Answerclub Logo Answerclub Logo

Answerclub Navigation

  • Home
  • About Us
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask A Question
  • Home
  • About Us
  • Contact Us

Welcome to Answerclub.org

Questions | Answers | Discussions | Knowledge sharing | Communities & more.

Ask A Question
Home/ Questions/Q 241808
Next
In Process

Answerclub Latest Questions

Aryan Prajapat
  • 0
  • 0
Aryan PrajapatKnowledge Contributor
Asked: October 9, 20242024-10-09T12:28:45+05:30 2024-10-09T12:28:45+05:30In: Education

How do you implement stack using queues?

  • 0
  • 0
How do you implement stack using queues?
1
  • 1 1 Answer
  • 42 Views
  • 0 Followers
  • 0
Answer
  • Report

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Aryan Prajapat
    Aryan Prajapat Knowledge Contributor
    2024-10-09T12:29:42+05:30Added an answer on October 9, 2024 at 12:29 pm

    A stack can be implemented using two queues. We know that a queue supports enqueue and dequeue operations. Using these operations, we need to develop push, pop operations.
    Let stack be ‘s’ and queues used to implement be ‘q1’ and ‘q2’. Then, stack ‘s’ can be implemented in two ways:
    1. By making push operation costly:

    This method ensures that the newly entered element is always at the front of ‘q1’ so that pop operation just dequeues from ‘q1’.
    ‘q2’ is used as auxillary queue to put every new element in front of ‘q1’ while ensuring pop happens in O(1) complexity.
    Pseudocode:
    Push element to stack s: Here push takes O(n) time complexity.
    push(s, data):
    Enqueue data to q2
    Dequeue elements one by one from q1 and enqueue to q2.
    Swap the names of q1 and q2
    Pop element from stack s: Takes O(1) time complexity.
    pop(s):
    dequeue from q1 and return it.
    2. By making pop operation costly:

    In push operation, the element is enqueued to q1.
    In pop operation, all the elements from q1 except the last remaining element, are pushed to q2 if it is empty. That last element remaining of q1 is dequeued and returned.
    Pseudocode:
    Push element to stack s: Here push takes O(1) time complexity.
    push(s,data):
    Enqueue data to q1
    Pop element from stack s: Takes O(n) time complexity.
    pop(s):
    Step1: Dequeue every elements except the last element from q1 and enqueue to q2.
    Step2: Dequeue the last item of q1, the dequeued item is stored in result variable.
    Step3: Swap the names of q1 and q2 (for getting updated data after dequeue)
    Step4: Return the result

      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

You must login to add an answer.

Continue with Google
or use

Forgot Password?

Need An Account, Sign Up Here

Sidebar

Ask A Question

Stats

  • Questions 60,724
  • Answers 54,226
  • Popular
  • Answers
  • Mr.Doge

    What are the best AI tools available for Creative Designing?

    • 53 Answers
  • Mr.Doge

    How is tax calculated in India for investing in US ...

    • 41 Answers
  • Mr.Doge

    How to invest in NCD/ Corporate Bonds in India? Is ...

    • 36 Answers
  • Ekta
    Ekta added an answer I recently received diphtheria injections from 9M India and had… June 28, 2026 at 9:17 pm
  • Ekta
    Ekta added an answer For me, the best pharma company is not just about… June 28, 2026 at 9:17 pm
  • singhalglobal singhal
    singhalglobal singhal added an answer Underground Warning Mesh is an indispensable safety solution designed to… June 27, 2026 at 3:27 pm

Related Questions

  • What makes Steel Pipe Sourcing a trusted platform for finding ...

    • 1 Answer
  • Which industries commonly use FFS bags and films for packaging, ...

    • 1 Answer
  • Which industries commonly use geomembranes for lining, containment, waterproofing, and ...

    • 1 Answer
  • Which industries commonly use geocells for road construction, retaining walls, ...

    • 1 Answer
  • Which industries commonly use geo textile bags for flood control, ...

    • 1 Answer

Trending Tags

ai (246) biology (376) branch of study (241) business (242) car detailing studio (189) cricket (270) digital marketing (226) education (1095) english (343) environment (179) food (302) general knowledge. (1051) general science (258) geography (269) gk (776) health (397) history (798) lifestyle (208) pilates (453) pilates classes (293) pilates fitness (422) pilates workout (407) poll (261) psychology (229) question (7879) science (352) sports (334) technology (367) tonic method (255) travel (367)

Explore

  • Home
  • Groups
  • Add group
  • Catagories
  • Questions
    • New Questions
    • Most Answered
  • Polls
  • Tags
  • Badges

© 2026 Answerclub.org | All Rights Reserved
Designed & Developed by INFINITEBOX & TechTrends