Best algorithm for evaluating a mathematical expression? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T08:58:49Z http://stackoverflow.com/feeds/question/572796 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/572796/best-algorithm-for-evaluating-a-mathematical-expression 7 Best algorithm for evaluating a mathematical expression? Steve 2009-02-21T10:54:40Z 2009-02-21T11:53:47Z <p>What's the best algorithm for evaluating a mathematical expression? I'd like to be able to optimize this a little in the sense that I may have one formula with various variables, which I may need to evaluate hundreds of times using different variables. So basically if I can initially parse the formula so that it is optimized in some way, and I can then pass in the variables to this optimized version as many times as I need, each time it produces a result for me.</p> <p>I'll be writing this in either Delphi or C#. I have already written something similar by using the shunting yard algorithm, but each time I need to calculate the same formula, I'm having to go through the parsing stage. There must be a better way to do this. </p> http://stackoverflow.com/questions/572796/best-algorithm-for-evaluating-a-mathematical-expression/572799#572799 6 Answer by Marc Gravell for Best algorithm for evaluating a mathematical expression? Marc Gravell 2009-02-21T10:59:16Z 2009-02-21T11:31:06Z <p>In C# with .NET 3.5, you can use <code>Expression</code> for this; you can build a parameterised expression and then compile it to a delegate. This is exactly what I did for the maths aspect of <a href="http://marcgravell.blogspot.com/2009/01/above-surface.html" rel="nofollow">Finguistics</a>. I still have the parsing code I used if you want it...</p> <p>The main trick I used was that to keep the delegate type known, I used an array as the input type - treating different args as arr[0], arr[1], arr[2] etc. This means I could compile to (for example) a <code>Func&lt;decimal[], decimal&gt;</code> (takes an array of <code>decimal</code>s, returns a <code>decimal</code>).</p> <p>Once you have called <code>Compile()</code>, this is pertty much as though you had code to do it directly.</p> <p>(edit)</p> <p>As a brief example of using <code>Expression</code> in this way (with a hard-coded function), see below. The parser I have already written <em>currently</em> works as a <em>predicate</em> checker - i.e. to check that "? + (2 * ? - ?) = 22 + ?" - but it wouldn't be hard to change it to return the result instead (and introduce more operations, like <code>sin</code>/<code>pow</code>/etc - presumably by mapping them directly to public methods on a helper object (via <code>Expression.Call</code>)).</p> <pre><code>using System; using System.Linq.Expressions; static class Program { static void Main() { var args = Expression.Parameter(typeof(float[]), "args"); var x = Expression.ArrayIndex(args, Expression.Constant(0)); var y = Expression.ArrayIndex(args, Expression.Constant(1)); var add = Expression.Add(x, y); var lambda = Expression.Lambda&lt;Func&lt;float[], float&gt;&gt;(add, args); Func&lt;float[], float&gt; func = lambda.Compile(); Console.WriteLine(func.Call(1, 2)); Console.WriteLine(func.Call(3, 4)); Console.WriteLine(func.Call(5, 6)); } static T Call&lt;T&gt;(this Func&lt;T[], T&gt; func, params T[] args) { // just allows "params" usage... return func(args); } } </code></pre> http://stackoverflow.com/questions/572796/best-algorithm-for-evaluating-a-mathematical-expression/572863#572863 12 Answer by Barry Kelly for Best algorithm for evaluating a mathematical expression? Barry Kelly 2009-02-21T11:53:47Z 2009-02-21T11:53:47Z <p>If you want to do it with Delphi, you could look into how the <code>JclExprEval</code> unit works, part of the <a href="http://sourceforge.net/projects/jcl/" rel="nofollow">JEDI Code Library</a>. I wrote it several years ago (it's a little over-engineered); it parses functions and variables and can hand you back a method pointer which evaluates the expression quickly. Pass the variables in by reference, and you can change them directly and the re-evaluated expression will be calculated accordingly.</p> <p>In any case, the basics of how it works may be helpful for you. Recursive-descent parsing of expressions is easy, and by building a tree you can evaluate multiple times without re-parsing. JclExprEval actually generates code for a simple stack machine, so that it can work a little faster than tree interpretation; stack machines largely restrict their memory operations to arrays and use switches for opcodes, while tree interpretation follows links throughout the heap and often uses virtual dispatch (or double-dispatch) for opcodes, so they usually end up slower.</p> <p>Taking the same approach as <code>JclExprEval</code> in parsing but written in C#, and building up an <code>Expression</code>, like Marc suggests, is another perfectly valid approach. The JIT-compiled expression ought to be quite a bit faster than an interpreted expression program or tree, which themselves are a lot faster than parsing.</p>