top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to draw a binary Tree for mathematical expression?

+6 votes
4,009 views

For example draw a binary Tree for the expression:

A * B - (C + D) * (P / Q)
posted Oct 29, 2013 by Mona Sharma

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

I hope you just want the representation -

      -
   /     \
  *        *
 / \     /    \  
a   b   +      /
       / \    / \
      c   D  P   Q
answer Oct 29, 2013 by Salil Agrawal
...