Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C++ Enter e string through the keyboard (for end press Ctrl+A) and declare an empty stack and an empty queue. For each character in the

C++

Enter e string through the keyboard (for end press Ctrl+A) and declare an empty stack and an empty queue. For each character in the string, if it is a lowercase, enter (push) it into the stack, otherwise enter (enqueue) it in the queue. Print both the stack and the queue. Then, pop all the lowercase characters one by one from the stack and enter them in the queue. Once again print both the stack and the queue.

Note:use the function islower(character)to get trueif the character is a lowercase, or false otherwise.

Example output:

Enter the string (for end press Ctrl+A):

This is a string^A

After pushing the lowercase characters in the stack, and all the other characters in the queue, the output is:

stack:

g -> n -> i -> r -> t -> s -> a -> s -> i -> s -> i -> h -> NULL

queue:

T -> -> -> -> NULL

After entering the lowercase characters in the queue, the output is:

stack:

NULL

queue:

T -> -> -> -> g -> n -> i -> r -> t -> s -> a -> s -> i -> s -> i -> h -> NULL

Press any key to continue ...

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Theory Icdt 97 6th International Conference Delphi Greece January 8 10 1997 Proceedings Lncs 1186

Authors: Foto N. Afrati ,Phokion G. Kolaitis

1st Edition

3540622225, 978-3540622222

More Books

Students also viewed these Databases questions

Question

How did you feel about taking piano lessons as a child? (general)

Answered: 1 week ago