What does it mean

int mid =(s+e)>>1
significance of >>1?

hello @ashish_arora369
this (>>) is right shift operator.
its working ->
a>>i means a/(2 ^i)

so here->

this is nothing but int mid=(s+e)/2

u will learn more about it in ur bit manipulation playlist