September 2017 Update
This commit is contained in:
parent
bba7bfd280
commit
ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions
|
|
@ -1,138 +1,165 @@
|
|||
import java.util.Stack;
|
||||
|
||||
public class ArithmeticEvaluation
|
||||
{
|
||||
public static enum Parentheses { LEFT, RIGHT }
|
||||
public class ArithmeticEvaluation {
|
||||
|
||||
public static enum BinaryOperator
|
||||
{
|
||||
ADD('+', 1) {
|
||||
public BigRational eval(BigRational leftValue, BigRational rightValue) { return leftValue.add(rightValue); }
|
||||
},
|
||||
SUB('-', 1) {
|
||||
public BigRational eval(BigRational leftValue, BigRational rightValue) { return leftValue.subtract(rightValue); }
|
||||
},
|
||||
MUL('*', 2) {
|
||||
public BigRational eval(BigRational leftValue, BigRational rightValue) { return leftValue.multiply(rightValue); }
|
||||
},
|
||||
DIV('/', 2) {
|
||||
public BigRational eval(BigRational leftValue, BigRational rightValue) { return leftValue.divide(rightValue); }
|
||||
};
|
||||
|
||||
public final char symbol;
|
||||
public final int precedence;
|
||||
|
||||
BinaryOperator(char symbol, int precedence)
|
||||
{
|
||||
this.symbol = symbol;
|
||||
this.precedence = precedence;
|
||||
public interface Expression {
|
||||
BigRational eval();
|
||||
}
|
||||
|
||||
public abstract BigRational eval(BigRational leftValue, BigRational rightValue);
|
||||
}
|
||||
public enum Parentheses {LEFT}
|
||||
|
||||
public static class BinaryExpression
|
||||
{
|
||||
public Object leftOperand = null;
|
||||
public BinaryOperator operator = null;
|
||||
public Object rightOperand = null;
|
||||
public enum BinaryOperator {
|
||||
ADD('+', 1),
|
||||
SUB('-', 1),
|
||||
MUL('*', 2),
|
||||
DIV('/', 2);
|
||||
|
||||
public BinaryExpression(Object leftOperand, BinaryOperator operator, Object rightOperand)
|
||||
{
|
||||
this.leftOperand = leftOperand;
|
||||
this.operator = operator;
|
||||
this.rightOperand = rightOperand;
|
||||
}
|
||||
public final char symbol;
|
||||
public final int precedence;
|
||||
|
||||
public BigRational eval()
|
||||
{
|
||||
BigRational leftValue = (leftOperand instanceof BinaryExpression) ? ((BinaryExpression)leftOperand).eval() : (BigRational)leftOperand;
|
||||
BigRational rightValue = (rightOperand instanceof BinaryExpression) ? ((BinaryExpression)rightOperand).eval() : (BigRational)rightOperand;
|
||||
return operator.eval(leftValue, rightValue);
|
||||
}
|
||||
|
||||
public String toString()
|
||||
{ return "(" + leftOperand + " " + operator.symbol + " " + rightOperand + ")"; }
|
||||
}
|
||||
|
||||
public static void createNewOperand(BinaryOperator operator, Stack<Object> operands)
|
||||
{
|
||||
Object rightOperand = operands.pop();
|
||||
operands.push(new BinaryExpression(operands.pop(), operator, rightOperand));
|
||||
return;
|
||||
}
|
||||
|
||||
public static Object createExpression(String inputString)
|
||||
{
|
||||
int curIndex = 0;
|
||||
boolean afterOperand = false;
|
||||
Stack<Object> operands = new Stack<Object>();
|
||||
Stack<Object> operators = new Stack<Object>();
|
||||
inputStringLoop:
|
||||
while (curIndex < inputString.length())
|
||||
{
|
||||
int startIndex = curIndex;
|
||||
char c = inputString.charAt(curIndex++);
|
||||
if (Character.isWhitespace(c))
|
||||
continue;
|
||||
if (afterOperand)
|
||||
{
|
||||
if (c == ')')
|
||||
{
|
||||
Object operator = null;
|
||||
while (!operators.isEmpty() && ((operator = operators.pop()) != Parentheses.LEFT))
|
||||
createNewOperand((BinaryOperator)operator, operands);
|
||||
continue;
|
||||
BinaryOperator(char symbol, int precedence) {
|
||||
this.symbol = symbol;
|
||||
this.precedence = precedence;
|
||||
}
|
||||
afterOperand = false;
|
||||
for (BinaryOperator operator : BinaryOperator.values())
|
||||
{
|
||||
if (c == operator.symbol)
|
||||
{
|
||||
while (!operators.isEmpty() && (operators.peek() != Parentheses.LEFT) && (((BinaryOperator)operators.peek()).precedence >= operator.precedence))
|
||||
createNewOperand((BinaryOperator)operators.pop(), operands);
|
||||
operators.push(operator);
|
||||
continue inputStringLoop;
|
||||
}
|
||||
|
||||
public BigRational eval(BigRational leftValue, BigRational rightValue) {
|
||||
switch (this) {
|
||||
case ADD:
|
||||
return leftValue.add(rightValue);
|
||||
case SUB:
|
||||
return leftValue.subtract(rightValue);
|
||||
case MUL:
|
||||
return leftValue.multiply(rightValue);
|
||||
case DIV:
|
||||
return leftValue.divide(rightValue);
|
||||
}
|
||||
throw new IllegalStateException();
|
||||
}
|
||||
|
||||
public static BinaryOperator forSymbol(char symbol) {
|
||||
for (BinaryOperator operator : values()) {
|
||||
if (operator.symbol == symbol) {
|
||||
return operator;
|
||||
}
|
||||
}
|
||||
throw new IllegalArgumentException(String.valueOf(symbol));
|
||||
}
|
||||
throw new IllegalArgumentException();
|
||||
}
|
||||
if (c == '(')
|
||||
{
|
||||
operators.push(Parentheses.LEFT);
|
||||
continue;
|
||||
}
|
||||
afterOperand = true;
|
||||
while (curIndex < inputString.length())
|
||||
{
|
||||
c = inputString.charAt(curIndex);
|
||||
if (((c < '0') || (c > '9')) && (c != '.'))
|
||||
break;
|
||||
curIndex++;
|
||||
}
|
||||
operands.push(BigRational.valueOf(inputString.substring(startIndex, curIndex)));
|
||||
}
|
||||
|
||||
while (!operators.isEmpty())
|
||||
{
|
||||
Object operator = operators.pop();
|
||||
if (operator == Parentheses.LEFT)
|
||||
throw new IllegalArgumentException();
|
||||
createNewOperand((BinaryOperator)operator, operands);
|
||||
}
|
||||
Object expression = operands.pop();
|
||||
if (!operands.isEmpty())
|
||||
throw new IllegalArgumentException();
|
||||
return expression;
|
||||
}
|
||||
public static class Number implements Expression {
|
||||
private final BigRational number;
|
||||
|
||||
public static void main(String[] args)
|
||||
{
|
||||
String[] testExpressions = { "2+3", "2+3/4", "2*3-4", "2*(3+4)+5/6", "2 * (3 + (4 * 5 + (6 * 7) * 8) - 9) * 10", "2*-3--4+-.25" };
|
||||
for (String testExpression : testExpressions)
|
||||
{
|
||||
Object expression = createExpression(testExpression);
|
||||
System.out.println("Input: \"" + testExpression + "\", AST: \"" + expression + "\", eval=" + (expression instanceof BinaryExpression ? ((BinaryExpression)expression).eval() : expression));
|
||||
public Number(BigRational number) {
|
||||
this.number = number;
|
||||
}
|
||||
|
||||
@Override
|
||||
public BigRational eval() {
|
||||
return number;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return number.toString();
|
||||
}
|
||||
}
|
||||
|
||||
public static class BinaryExpression implements Expression {
|
||||
public final Expression leftOperand;
|
||||
public final BinaryOperator operator;
|
||||
public final Expression rightOperand;
|
||||
|
||||
public BinaryExpression(Expression leftOperand, BinaryOperator operator, Expression rightOperand) {
|
||||
this.leftOperand = leftOperand;
|
||||
this.operator = operator;
|
||||
this.rightOperand = rightOperand;
|
||||
}
|
||||
|
||||
@Override
|
||||
public BigRational eval() {
|
||||
BigRational leftValue = leftOperand.eval();
|
||||
BigRational rightValue = rightOperand.eval();
|
||||
return operator.eval(leftValue, rightValue);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "(" + leftOperand + " " + operator.symbol + " " + rightOperand + ")";
|
||||
}
|
||||
}
|
||||
|
||||
private static void createNewOperand(BinaryOperator operator, Stack<Expression> operands) {
|
||||
Expression rightOperand = operands.pop();
|
||||
Expression leftOperand = operands.pop();
|
||||
operands.push(new BinaryExpression(leftOperand, operator, rightOperand));
|
||||
}
|
||||
|
||||
public static Expression parse(String input) {
|
||||
int curIndex = 0;
|
||||
boolean afterOperand = false;
|
||||
Stack<Expression> operands = new Stack<>();
|
||||
Stack<Object> operators = new Stack<>();
|
||||
while (curIndex < input.length()) {
|
||||
int startIndex = curIndex;
|
||||
char c = input.charAt(curIndex++);
|
||||
|
||||
if (Character.isWhitespace(c))
|
||||
continue;
|
||||
|
||||
if (afterOperand) {
|
||||
if (c == ')') {
|
||||
Object operator;
|
||||
while (!operators.isEmpty() && ((operator = operators.pop()) != Parentheses.LEFT))
|
||||
createNewOperand((BinaryOperator) operator, operands);
|
||||
continue;
|
||||
}
|
||||
afterOperand = false;
|
||||
BinaryOperator operator = BinaryOperator.forSymbol(c);
|
||||
while (!operators.isEmpty() && (operators.peek() != Parentheses.LEFT) && (((BinaryOperator) operators.peek()).precedence >= operator.precedence))
|
||||
createNewOperand((BinaryOperator) operators.pop(), operands);
|
||||
operators.push(operator);
|
||||
continue;
|
||||
}
|
||||
|
||||
if (c == '(') {
|
||||
operators.push(Parentheses.LEFT);
|
||||
continue;
|
||||
}
|
||||
|
||||
afterOperand = true;
|
||||
while (curIndex < input.length()) {
|
||||
c = input.charAt(curIndex);
|
||||
if (((c < '0') || (c > '9')) && (c != '.'))
|
||||
break;
|
||||
curIndex++;
|
||||
}
|
||||
operands.push(new Number(BigRational.valueOf(input.substring(startIndex, curIndex))));
|
||||
}
|
||||
|
||||
while (!operators.isEmpty()) {
|
||||
Object operator = operators.pop();
|
||||
if (operator == Parentheses.LEFT)
|
||||
throw new IllegalArgumentException();
|
||||
createNewOperand((BinaryOperator) operator, operands);
|
||||
}
|
||||
|
||||
Expression expression = operands.pop();
|
||||
if (!operands.isEmpty())
|
||||
throw new IllegalArgumentException();
|
||||
return expression;
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
String[] testExpressions = {
|
||||
"2+3",
|
||||
"2+3/4",
|
||||
"2*3-4",
|
||||
"2*(3+4)+5/6",
|
||||
"2 * (3 + (4 * 5 + (6 * 7) * 8) - 9) * 10",
|
||||
"2*-3--4+-.25"};
|
||||
for (String testExpression : testExpressions) {
|
||||
Expression expression = parse(testExpression);
|
||||
System.out.printf("Input: \"%s\", AST: \"%s\", value=%s%n", testExpression, expression, expression.eval());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue