evaluate the expression tree.txt

来自「It is an ebook about trees」· 文本 代码 · 共 24 行

TXT
24
字号
  
   
Given an expression tree, evaluate the expression and obtain a paranthesized form of the expression. 

Discuss it!          


The code below prints the paranthesized form of a tree. 


infix_exp(p) 
{ 
   if(p) 
   { 
      printf("("); 
      infix_exp(p->left); 
      printf(p->data); 
      infix_exp(p->right); 
      printf(")"); 
   } 
} 
 
 
 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?