diff --git a/Daily/Queue_Revarsal.cpp b/Daily/Queue_Revarsal.cpp index edc1105a..b6c4a1c6 100644 --- a/Daily/Queue_Revarsal.cpp +++ b/Daily/Queue_Revarsal.cpp @@ -8,6 +8,8 @@ Given a Queue Q containing N elements. The task is to reverse the Queue. Your ta Explanation: After reversing the given elements of the queue , the resultant queue will be 6 2 10 1 3 4. + + Input: 4 4 3 2 1