Sort a stack using a temporary stack
Given a stack of integers, sort it in ascending order using another temporary stack. Examples: Input : [34, 3, 31, 98, 92, 23]Output : [3, 23, 31, 34, 92, 98]Input : [3, 5, 1, 4, 2, 8]Output : [1, 2, 3, 4, 5, 8] Algorithm: Create a temporary stack say tmpStack.While input stack is NOT empty do this: