You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
else{ // can't be balanced because there is no any star or open braces in left hand side
return false;
}
}
}
while(!open.empty()){
if(star.empty()){//there is no any star to make them closing braces.
return false;
}
if(open.top() < star.top()){
open.pop();
star.pop();
}
else{ // if convert the * into closing braces even though it can't become a valid parenthesis -> because open bracket is lying in after the star -> * ( -> )(