Update appNew update is available. Click here to update.
Last Updated: 24 Dec, 2020
Delete middle element from stack
Easy
Problem statement

You are having a stack "ARR" of size 'N+1', your task is to delete the middlemost element so that the size of resulting stack is 'N'.

A stack is a linear data structure where both insertion and deletion of elements take place at the top. It follows FILO (First In Last Out) or LIFO (Last In First Out) approaches. Books piled on top of each other is an example of a stack, where you can only remove a single book at a time, which is at the top of the stack. Likewise, you can only add a single book at a time, on the top of the stack only.

Example :-
INPUT : ARR [ ] = [ 1 , 2 , 3 , 4 , 5 ] , N = 4
OUTPUT: ARR [ ] = [ 1 , 2 , 4,  5 ]

The above example contains an odd number of elements, hence the middle element is clearly the (N+1) / 2th element, which is removed from the stack in the output.

INPUT : ARR [ ] = [ 5, 6, 7, 8 ] , N = 3
OUTPUT: ARR [ ] = [ 5, 7, 8 ]

The above example contains an even number of elements, so out of the two middle elements, we consider the one which occurs first. Hence, the middle element would be ((N+1) / 2 - 1) element, which is 6 and is removed from the stack in the output.

Input Format

The first line of input contains an integer 'T' representing the number of the test case. Then the test case follows.

The first line of each test case contains an integer 'N', where 'N+1' denotes the number of elements in the stack initially.

The second line of each test case contains 'N+1' space-separated integers, denoting the elements of the stack.

Output Format:

For every test case, print 'N' space-separated integer, denoting the elements in the stack after removing the middle element from the input stack. 
The output of every test case will be printed in a separate line. 
Note:
You don’t have to print anything, it has already been taken care of. Just implement the given function. 
Constraints:
1 <= T <= 100    
1 <= N+1 <= 3000
0 <= data <= 10^9

Where β€˜T’ is the number of test cases, β€˜N+1’ is the number of elements in the input Stack. β€˜data’ is the value of each element in the stack.

Time limit: 1 second
Approaches

01Approach

The idea is to use recursive calls. We first remove all items one by one, then we recur. After recursive calls, we push all items back except for the middle item.

 

  1. We have an input stack as β€œINPUTSTACK”, β€˜N’ denotes the number of elements in the stack.
  2. We define a function "DELETEMIDDLE" that accepts, a stack of integers "STACK" and an integer β€œCOUNT” (initially 0) as input parameters.
  3. Now we define the base condition. If the stack is empty or, if all the elements are traversed (COUNT == N), we return.
  4. Now we create a new integer variable, say β€œTOP”, and we store the top of the "STACK" in "TOP", simultaneously pop out the top element of the stack.
  5. Call the recursive function β€œDELETEMIDDLE”  by incrementing the value of "COUNT" by 1.
  6. Add "TOP" back to β€œSTACK”, if COUNT != N / 2.
  7. At the end of recursive calls, our stack will contain β€œN - 1” elements, after removing the middle element of the input stack.

 

Algorithm:

 

  • Initialise β€œDELETEMIDDLE"( STACK, N, COUNT = 0)
  • IF "STACK" is empty OR β€œCOUNT” is equal to β€˜N’:
    • Return
  • If β€œTOP” is equal to the top element of "STACK"
  • Pop the top element of "STACK"
  • Recursively call β€œDELETEMIDDLE”( STACK, N, COUNT+1 )
  • STACK.push(TOP) if COUNT != N / 2