package com.service;
/**
* 逆波兰式实现优先级计算
*
* */
interface Calculator {
public double toReversePolishNotation(String s);
public int readDouble(String s, int index);
public double calculate(double pre, char op, double after);
}
最近下载更多

最近浏览