हिंदी

For the following arithmetic expression: ((2+3)*(4/2))+2 Show step-by-step process for matching parentheses using stack data structure. - Computer Science (Python)

Advertisements
Advertisements

प्रश्न

For the following arithmetic expression:

((2+3)*(4/2))+2

Show step-by-step process for matching parentheses using stack data structure.

संक्षेप में उत्तर

उत्तर

Rules for matching parentheses.

  1. PUSH in the stack, if encounter opening parenthesis ‘(‘.
  2. POP from the stack, if encounter closing parenthesis ‘)’
  3. At the end; if stack is empty – Then Parentheses are balanced, otherwise Parentheses are unbalanced.

Given Expression : ( ( 2 + 3 ) * ( 4 / 2 ) ) + 2

Scanning from left to right –

Symbol Stack, Initially Stack is Empty [ ] Action
  [ ]  
( ( PUSH ‘(‘
( ( ( PUSH ‘(‘
2 ( ( Ignore
+ ( ( Ignore
3 ( ( Ignore
) ( POP
* ( Ignore
( ( ( PUSH
4 ( ( Ignore
/ ( ( Ignore
2 ( ( Ignore
) ( POP
) [ ] POP
+ [ ] Ignore
2 [ ] Ignore
End of Symbol    
shaalaa.com
Notations for Arithmetic Expressions
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 3: Stack - Exercise [पृष्ठ ५२]

APPEARS IN

एनसीईआरटी Computer Science [English] Class 12
अध्याय 3 Stack
Exercise | Q 4. | पृष्ठ ५२
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×