completato binary tree e implementato euler tour astratto + una sua implementazione per computazione aritmetica

This commit is contained in:
2014-04-27 13:38:06 +02:00
parent cd1a246d4f
commit 4f68dd31d1
11 changed files with 208 additions and 6 deletions

View File

@@ -0,0 +1,16 @@
package euler_tour.expressions;
/**
* Created with MONSTER.
* User: xgiovio
* Date: 27/04/2014
* Time: 13:08
*/
public class AdditionOperator extends ExpressionOperator {
public Integer getValue() {
return (firstOperand + secondOperand);
}
public String toString() {
return new String("+"); }
}