Given two queues with their standard operations (enqueue, dequeue, isempty, size), implement a stack with its standard operations (pop, push, isempty, size).
To solve this problem first we have to declare one queue as working queue then enqueue the first element in to that queue. after that when we have to push another element then we push another element in other queue then dequeue all elements of working queue one by one till it is empty and enqueue all into other queue in same order and set other queue as working queue. this is for pushing elements into stack(implemented in queues). for pop operation we just have to dequeue element from working queue that will be the top element for the stack. isempty = same isempty operation on working queue. size= size of the working queue.
Given an integer n, write a function that returns count of trailing zeroes in n!. Examples: Input: n = 5 Output: 1 Factorial of 5 is 20 which has one trailing 0. Input: n = 20 Output: 4 Factorial of 20 is 2432902008176640000 which has 4 trailing zeroes. Input: n = 100 Output: 24
This comment has been removed by the author.
ReplyDeleteTo solve this problem first we have to declare one queue as working queue then enqueue the first element in to that queue.
ReplyDeleteafter that when we have to push another element then we push another element in other queue then dequeue all elements of working queue one by one till it is empty and enqueue all into other queue in same order and set other queue as working queue.
this is for pushing elements into stack(implemented in queues).
for pop operation we just have to dequeue element from working queue that will be the top element for the stack.
isempty = same isempty operation on working queue.
size= size of the working queue.
@gaurav yes this will work fine..:)
ReplyDelete