Implement queue by using stack
Define how to implement queue by using stack?
Expert
A queue can be implemented with two stacks as follows:
a. An element is inserted within the queue through pushing this within stack 1
b. An element is extracted by the queue through popping this from the stack 2
c. When the stack 2 is empty then each element currently within stack 1 are transferred to stack 2 but within the reverse order
d. When the stack 2 is not empty only pop the value by stack 2.
Explain binary tree?
Write down the prerequisites for implementing the queue ADT by using array?
Describes the uses of Tree Database?
Briefly describe the term linear and non linear data structure?
Explain the user interface design?
Write down a brief note on the term Huffman algorithm?
What is minimum number of queues required to implementing the priority queue?
Explain the queue operation in brief.
Illustrates the use of semaphores for the critical sections of a task?
Explain about the Huffman algorithm.
18,76,764
1957459 Asked
3,689
Active Tutors
1420060
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!