2. Suppose an Array based global Stack is implemented with a given maxSize. User is going to give a “lucky_number". Write a method 'int popNonLucky(int lucky_number)' which is going to pop all numbers except luck number. Finally, the Stack needs to be compact so that only luck_number present(s) in Stack. And the method should return total lucky_numbers found.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter18: Stacks And Queues
Section: Chapter Questions
Problem 16PE: The implementation of a queue in an array, as given in this chapter, uses the variable count to...
icon
Related questions
Question

please solve asap

 

 

In C++ 

2. Suppose an Array based global Stack is implemented with a given maxSize. User is
going to give a "lucky_number". Write a method 'int popNonLucky(int lucky_number)'
which is going to pop all numbers except luck_number. Finally, the Stack needs to be
compact so that only luck_number present(s) in Stack. And the method should return
total lucky_numbers found.
Sample input/ output:
maxSize = 10
lucky_number = 13
Initially:
|top|
6.
1
3
4
5
7
8
9.
2
13
5
13
13
4
Then:|
1
3
4
6.
7
8.
13
13
13
Finally:
|top|
2
1
3
4
5
7
8.
13
13
13
Total lucky_numbers = 3
2.
Transcribed Image Text:2. Suppose an Array based global Stack is implemented with a given maxSize. User is going to give a "lucky_number". Write a method 'int popNonLucky(int lucky_number)' which is going to pop all numbers except luck_number. Finally, the Stack needs to be compact so that only luck_number present(s) in Stack. And the method should return total lucky_numbers found. Sample input/ output: maxSize = 10 lucky_number = 13 Initially: |top| 6. 1 3 4 5 7 8 9. 2 13 5 13 13 4 Then:| 1 3 4 6. 7 8. 13 13 13 Finally: |top| 2 1 3 4 5 7 8. 13 13 13 Total lucky_numbers = 3 2.
Expert Solution
steps

Step by step

Solved in 4 steps with 1 images

Blurred answer
Knowledge Booster
Stack
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning