You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
265 B
8 lines
265 B
class Expression:
|
|
"""représente une expression arithmétique sous forme d'un arbre"""
|
|
def __init__ (valeur_racine, fils_gauche, fils_droit):
|
|
self.val_racine = valeur_racine
|
|
self.gauche = fils_gauche
|
|
self.droit = fils_droit
|
|
|
|
|