Hello i have a question and i hope to find some answers
i want to create a binary tree in pep8 to make some prefix arithmetic
so to do 2+3 the user have to enter + 3 2 to do (3*2)-3 the user have to enter - * 3 2 3
i did it in java and it's :
class BinaryTree {
public char opt;// = {*,+,/,-}
public int val;
public char variable ='\0';
public boolean feuille = true;
public BinaryTree left;
public BinaryTree right;
}
other question : i have done all the code in java , can i see the assembly code of my java programm? so after that i will create a pep8 programm using the assembly code