User A. Rex - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T03:52:55Z http://stackoverflow.com/feeds/user/3508 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/451771/whats-the-highest-level-math-youve-used-in-the-real-world 31 What's the highest-level math you've used in the real world? A. Rex 2009-01-16T20:06:04Z 2009-12-14T08:28:14Z <p>What's the highest-level math you've used in the real world? What did you need it for? Where did you learn it (in school, by yourself)? (Incidentally, I do mean in a <em>programming context</em>, as this is a programming website.)</p> <p>Note: I'm not wondering <a href="http://stackoverflow.com/questions/157354/is-mathematics-necessary-for-programming">if mathematics is necessary for programming</a> or the <a href="http://stackoverflow.com/questions/415537/math-programming-and-learning">relationship between math and programming</a>, and I'm not trying to figure out how much math to learn myself. Those are all good questions, but I was just wondering what the highest-level math <em>you personally</em> used in the real world. (You can decide what "highest-level" means for you personally as well.)</p> <p>Perhaps it was for a domain-specific application. So your answer might be:</p> <ul> <li>Computing projections and intersections in computer graphics</li> <li>Quaternions because you work with 3-d rotations</li> <li>Runge-Kutta or the finite element method for some differential equations</li> <li>Fourier transform for some signal processing</li> <li>Nothing beyond bit operations</li> <li>"None at all"</li> </ul> <p>I don't know! But I'm interested.</p> http://stackoverflow.com/questions/154097/whats-in-your-emacs 20 What's in your .emacs? A. Rex 2008-09-30T17:27:08Z 2009-12-10T18:00:01Z <p>I've switched computers a few times recently, and somewhere along the way I lost my .emacs. I'm trying to build it up again, but while I'm at it, I thought I'd pick up other good configurations that other people use.</p> <p>So, if you use Emacs, what's in <i>your</i> .emacs?</p> <p>Mine is pretty barren right now, containing only:</p> <ol> <li>Global font-lock-mode! <code>(global-font-lock-mode 1)</code></li> <li>My personal preferences with respect to indentation, tabs, and spaces.</li> <li>Use cperl-mode instead of perl-mode.</li> <li>A shortcut for compilation.</li> </ol> <p>What do you think is useful?</p> http://stackoverflow.com/questions/430142/what-algorithms-compute-directions-from-point-a-to-point-b-on-a-map 67 What algorithms compute directions from point A to point B on a map? A. Rex 2009-01-09T23:35:58Z 2009-12-09T00:04:39Z <p>How do map providers (such as Google or Yahoo! Maps) suggest directions?</p> <p>I mean, they probably have real-world data in some form, certainly including distances but also perhaps things like driving speeds, presence of sidewalks, train schedules, etc. But suppose the data were in a simpler format, say a very large directed graph with edge weights reflecting distances. I want to be able to quickly compute directions from one arbitrary point to another. Sometimes these points will be close together (within one city) while sometimes they will be far apart (cross-country).</p> <p>Graph algorithms like Dijkstra's algorithm will not work because the graph is enormous. Luckily, heuristic algorithms like A* will probably work. However, our data is very structured, and perhaps some kind of tiered approach might work? (For example, store precomputed directions between certain "key" points far apart, as well as some local directions. Then directions for two far-away points will involve local directions to a key points, global directions to another key point, and then local directions again.)</p> <p>What algorithms are actually used in practice?</p> <p>PS. This question was motivated by finding quirks in online mapping directions. Contrary to the triangle inequality, sometimes Google Maps thinks that <a href="http://maps.google.com/maps?f=d&amp;saddr=Place+Jacques+Bonsergent,+75010+Paris&amp;daddr=Place+Louis+Lepine,+75004+Paris&amp;hl=en&amp;geocode=&amp;mra=ls&amp;dirflg=w&amp;sll=48.861295,2.35161&amp;sspn=0.013778,0.029655&amp;ie=UTF8&amp;z=14" rel="nofollow" title="Place Jacques Bonsergent - Place Louis Lepine">X-Z</a> takes longer and is farther than using an intermediate point as in <a href="http://maps.google.com/maps?f=d&amp;saddr=Place+Jacques+Bonsergent,+75010+Paris&amp;daddr=Square+Emile+Chautemps,+75003+Paris+to%3APlace+Louis+Lepine,+75004+Paris&amp;hl=en&amp;geocode=&amp;mra=ls&amp;dirflg=w&amp;sll=48.869359,2.357833&amp;sspn=0.006888,0.014827&amp;ie=UTF8&amp;z=14" rel="nofollow" title="via Square Emile Chautemps">X-Y-Z</a>. But maybe their walking directions optimize for another parameter, too?</p> <p>PPS. Here's another violation of the triangle inequality that suggests (to me) that they use some kind of tiered approach: <a href="http://maps.google.com/maps?f=d&amp;saddr=214,+boulevard+de+la+Villette,+75019+Paris&amp;daddr=Passage+des+Patriarches,+75005+Paris&amp;hl=en&amp;geocode=&amp;sll=48.86278,2.35595&amp;sspn=0.05511,0.118618&amp;mra=cc&amp;dirflg=w&amp;ie=UTF8&amp;z=13" rel="nofollow" title="214, boulevard de la Villette - Passages des Patriarches">X-Z</a> versus <a href="http://maps.google.com/maps?f=d&amp;saddr=214,+boulevard+de+la+Villette,+75019+Paris&amp;daddr=Square+Emile+Chautemps,+75003+Paris+to%3APassage+des+Patriarches,+75005+Paris&amp;hl=en&amp;geocode=&amp;mra=ls&amp;dirflg=w&amp;sll=48.86278,2.35595&amp;sspn=0.05511,0.118618&amp;ie=UTF8&amp;ll=48.862682,2.357941&amp;spn=0.05511,0.118618&amp;z=13" rel="nofollow" title="via Square Emile Chautemps">X-Y-Z</a>. The former seems to use prominent Boulevard de Sebastopol even though it's slightly out of the way. (<em>Edit</em>: this example doesn't work anymore, but did at the time of the original post. The one above still works as of early November 2009.)</p> http://stackoverflow.com/questions/1839079/can-this-roman-number-to-integer-converter-code-be-shorter/1843627#1843627 5 Answer by A. Rex for Can this Roman Number to Integer converter code be shorter? A. Rex 2009-12-03T22:55:11Z 2009-12-03T22:55:11Z <h1>Shortest solutions from codegolf.com</h1> <p>There was a "<a href="http://codegolf.com/roman-to-decimal" rel="nofollow">Roman to decimal</a>" competition over at <a href="http://codegolf.com" rel="nofollow">Code Golf</a> some time ago. (Well, actually it's still running because they never end.) A Perl golfer by the name of <a href="http://www.perlmonks.org/?node%5Fid=176576" rel="nofollow">eyepopslikeamosquito</a> decided to win all four languages (Perl, PHP, Python, and Ruby), and so he did. He wrote a fascinating four-part series "<a href="http://www.perlmonks.org/?node%5Fid=759963" rel="nofollow">The golf course looks great, my swing feels good, I like my chances</a>" (<a href="http://www.perlmonks.org/?node%5Fid=761053" rel="nofollow">part II</a>, <a href="http://www.perlmonks.org/?node%5Fid=762180" rel="nofollow">part III</a>, <a href="http://www.perlmonks.org/?node%5Fid=763105" rel="nofollow">part IV</a>) describing his approaches over at <a href="http://www.perlmonks.org" rel="nofollow">Perl Monks</a>.</p> <p>Here are his solutions:</p> <h2>Ruby, 53 strokes</h2> <pre><code>n=1;$.+=n/2-n%n=10**(494254%C/9)%4999while C=getc;p$. </code></pre> <h2>Perl, 58 strokes</h2> <pre><code>$\+=$z-2*$z%($z=10**(19&amp;654115/ord)%1645)for&lt;&gt;=~/./g;print </code></pre> <p>He also has a 53-stroke solution, but it probably doesn't work right now: (it uses the <code>$^T</code> variable during a few second period in 2011!)</p> <pre><code>$\+=$z-2*$z%($z=10**(7&amp;$^T/ord)%1999)for&lt;&gt;=~/./g;print </code></pre> <h2>PHP, 70 strokes</h2> <pre><code>&lt;?while(A&lt;$c=fgetc(STDIN))$t+=$n-2*$n%$n=md5(o²Ûö¬Ñ.$c)%1858+1?&gt;&lt;?=$t; </code></pre> <p>The six weird characters in the <code>md5(..)</code> are <code>chr(111).chr(178).chr(219).chr(246).chr(172).chr(209)</code> in Perl notation.</p> <h2>Python, 78 strokes</h2> <pre><code>t=p=0 for r in raw_input():n=10**(205558%ord(r)%7)%9995;t+=n-2*p%n;p=n print t </code></pre> http://stackoverflow.com/questions/1829330/solving-a-cubic-equation/1829469#1829469 14 Answer by A. Rex for Solving a cubic equation A. Rex 2009-12-01T22:44:54Z 2009-12-01T22:44:54Z <p>Wikipedia's notation <code>(rho^(1/3), theta/3)</code> does not mean that <code>rho^(1/3)</code> is the real part and <code>theta/3</code> is the imaginary part. Rather, this is in polar coordinates. Thus, if you want the real part, you would take <code>rho^(1/3) * cos(theta/3)</code>.</p> <p>I made these changes to your code and it worked for me:</p> <pre><code>theta = arccos(r/rho) s_real = rho**(1./3.) * cos( theta/3) t_real = rho**(1./3.) * cos(-theta/3) </code></pre> <p>(Of course, <code>s_real = t_real</code> here because <code>cos</code> is even.)</p> http://stackoverflow.com/questions/575705/how-can-i-tile-videos-create-a-video-montage 0 How can I tile videos/create a video montage? A. Rex 2009-02-22T20:20:50Z 2009-11-25T11:53:56Z <p>I have four videos that I would like to tile in a 2x2 fashion to make a new video. Is there a way I can do this easily, preferably free and under Linux? I am willing to program a moderate amount, perhaps in order to interact with some library, but unwilling to write an entire video-processing program myself. You may assume that the input/output videos are in whatever format is most convenient.</p> <p>An analogue of the <a href="http://www.graphicsmagick.org/1.2/www/montage.html" rel="nofollow">gm montage</a> command (for images) would be fantastic.</p> http://stackoverflow.com/questions/1726698/code-golf-sierpinskis-triangle/1727351#1727351 10 Answer by A. Rex for Code Golf: Sierpinski's Triangle A. Rex 2009-11-13T05:44:50Z 2009-11-15T13:41:25Z <h1>Perl, 82 strokes</h1> <p>This version no longer prints a trailing newline. Only the first newline is necessary:</p> <pre><code>$_=' /\ /__\\'; for$x(2..&lt;&gt;){ my$y; $".=$"; s#.+#$y.=$/.$&amp;x2,$".$&amp;.$"#ge; $_.=$y } print </code></pre> <p>If command-line switches are allowed, then by traditional Perl golf scoring, this is 77+3 strokes (the first newline is literal):</p> <pre><code>#!perl -p $\=' /\ /__\\'; $y="", $".=$", $\=~s#.+#$y.=$/.$&amp;x2,$".$&amp;.$"#ge, $\.=$y for 2..$_ </code></pre> <p>Please feel free to edit my answer if you find an improvement.</p> http://stackoverflow.com/questions/1711628/regex-does-an-xpath-string-point-to-an-attribute/1711692#1711692 2 Answer by A. Rex for Regex: Does an XPATH string point to an attribute? A. Rex 2009-11-10T22:28:01Z 2009-11-11T00:00:49Z <p>This is actually a very subtle problem and I think a great question.</p> <p>My understanding is that an (abbreviated) XPATH points to an attribute if and only its <em>last</em> <code>@</code> is not within a predicate, that is, something of the form <code>[...]</code>, and has no steps after it (something like <code>/...</code>). I think this has the relatively simple regular expression <code>@[^]/]*$</code>, that is, there must be an <code>@</code> that has no <code>]</code>s nor <code>/</code>s after it. Also, if you want to cover unabbreviated XPATHs, you can use <code>(@|attribute::)[^]/]*$</code></p> <p>I've included a test harness that may prove useful in checking this or other tests. Note also that there may be whitespace in between tokens which can complicate some regexs.</p> <h3>Positive (an attribute)</h3> <ul> <li><code>@*</code> or <code>@a</code> or <code>../@a</code> or <code>a/@b</code></li> <li><code>a[@b and @c]/@d</code></li> <li><code>a[b[@c="d"]/e[@f and @g]]/h[@i="j"]/@k</code></li> </ul> <h3>Negative (not an attribute)</h3> <ul> <li><code>a[@b]</code> or <code>a[@b and @c]</code></li> <li><code>a[b[@c and @d]/@e]</code></li> <li><code>a[b[@c="d"]/e[@f and @g]]/h[@i="j"]/k[5][@l="m"]</code></li> </ul> <p>I can't think of a legal example where there is a <code>/</code> but not a <code>]</code> after the last example, but I think there might be one.</p> <p>Hopefully these examples make it at least a little clear that there can be arbitrary nesting of <code>[</code> and <code>]</code> together with <code>@</code>s anywhere in between. Luckily, I think only the very last <code>@</code> and its nesting level matters.</p> <p>(For reference, the OP's regex fails on <code>@a</code>. My original regex failed on <code>a[@b and @c]</code>.)</p> <p><em>Edit</em>: It turns out that there are more corner cases, which convinces me that there is no perfectly-correct regular expression. For example, once you have an attribute node, there are many ways of keeping it, <em>e.g.</em> <code>//@a//</code> or <code>//@a/.</code> in the abbreviated syntax. There are also a variety of more creative ways, such as <code>//@f//[node()]</code>. All in all, it seems that if you want to cover these cases, you need to be able to match <code>[</code> and <code>]</code>, which a basic regular expression cannot do. On the other hand, you could decide this is too contrived ...</p> http://stackoverflow.com/questions/1595333/merge-heaps-algorithm/1659205#1659205 1 Answer by A. Rex for merge heaps algorithm A. Rex 2009-11-02T02:43:22Z 2009-11-02T02:43:22Z <p>Two binary heaps of sizes n and k can be merged in O(log n * log k) comparisons. See</p> <p><a href="http://dx.doi.org/10.1007/BF00264229" rel="nofollow">Jörg-R. Sack and Thomas Strothotte, An algorithm for merging heaps, Acta Informatica 22 (1985), 172-186.</a></p> http://stackoverflow.com/questions/442026/function-overloading-by-return-type/442291#442291 22 Answer by A. Rex for Function overloading by return type? A. Rex 2009-01-14T08:33:16Z 2009-11-02T02:27:00Z <p>Contrary to what others are saying, overloading by return type <strong>is</strong> possible and <strong>is</strong> done by some modern languages. The usual objection is that in code like</p> <pre><code>int func(); string func(); int main() { func(); } </code></pre> <p>you can't tell which <code>func()</code> is being called. This can be resolved in a few ways:</p> <ol> <li>Have a predictable method to determine which function is called in such a situation.</li> <li>Whenever such a situation occurs, it's a compile-time error. However, have a syntax that allows the programmer to disambiguate, e.g. <code>int main() { (string)func(); }</code>.</li> <li>Don't have side effects. If you don't have side effects and you never use the return value of a function, then the compiler can avoid ever calling the function in the first place.</li> </ol> <p>Two of the languages I regularly (<a href="http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages?answer=441229#441229">ab</a>)use overload by return type: <strong>Perl</strong> and <strong>Haskell</strong>. Let me describe what they do.</p> <p>In <strong>Perl</strong>, there is a fundamental distinction between <em>scalar</em> and <em>list</em> context (and others, but we'll pretend there are two). Every built-in function in Perl can do different things depending on the <em>context</em> in which it is called. For example, the <code>join</code> operator forces list context (on the thing being joined) while the <code>scalar</code> operator forces scalar context, so compare:</p> <pre><code>print join " ", localtime(); # printed "58 11 2 14 0 109 3 13 0" for me right now print scalar localtime(); # printed "Wed Jan 14 02:12:44 2009" for me right now. </code></pre> <p>Every operator in Perl does something in scalar context and something in list context, and they may be different, as illustrated. (This isn't just for random operators like <code>localtime</code>. If you use an array <code>@a</code> in list context, it returns the array, while in scalar context, it returns the number of elements. So for example <code>print @a</code> prints out the elements, while <code>print 0+@a</code> prints the size.) Furthermore, every operator can <em>force</em> a context, e.g. addition <code>+</code> forces scalar context. Every entry in <code>man perlfunc</code> documents this. For example, here is part of the entry for <code>glob EXPR</code>:</p> <blockquote> <p>In list context, returns a (possibly empty) list of filename expansions on the value of <code>EXPR</code> such as the standard Unix shell <code>/bin/csh</code> would do. In scalar context, glob iterates through such filename expansions, returning undef when the list is exhausted.</p> </blockquote> <p>Now, what's the relation between list and scalar context? Well, <code>man perlfunc</code> says</p> <blockquote> <p>Remember the following important rule: There is no rule that relates the behavior of an expression in list context to its behavior in scalar context, or vice versa. It might do two totally different things. Each operator and function decides which sort of value it would be most appropriate to return in scalar context. Some operators return the length of the list that would have been returned in list context. Some operators return the first value in the list. Some operators return the last value in the list. Some operators return a count of successful operations. In general, they do what you want, unless you want consistency.</p> </blockquote> <p>so it's not a simple matter of having a single function, and then you do simple conversion at the end. In fact, I chose the <code>localtime</code> example for that reason.</p> <p>It's not just the built-ins that have this behavior. Any user can define such a function using <code>wantarray</code>, which allows you to distinguish between list, scalar, and void context. So, for example, you can decide to do nothing if you're being called in void context.</p> <p>Now, you may complain that this isn't <em>true</em> overloading by return value because you only have one function, which is told the context it's called in and then acts on that information. However, this is clearly equivalent (and analogous to how Perl doesn't allow usual overloading literally, but a function can just examine its arguments). Moreover, it nicely resolves the ambiguous situation mentioned at the beginning of this response. Perl doesn't complain that it doesn't know which method to call; it just calls it. All it has to do is figure out what context the function was called in, which is always possible:</p> <pre><code>sub func { if( not defined wantarray ) { print "void\n"; } elsif( wantarray ) { print "list\n"; } else { print "scalar\n"; } } func(); # prints "void" () = func(); # prints "list" 0+func(); # prints "scalar" </code></pre> <p>(Note: I may sometimes say Perl operator when I mean function. This is not crucial to this discussion.)</p> <p><strong>Haskell</strong> takes the other approach, namely to not have side effects. It also has a strong type system, and so you can write code like the following:</p> <pre><code>main = do n &lt;- readLn print (sqrt n) -- note that this is aligned below the n, if you care to run this </code></pre> <p>This code reads a floating point number from standard input, and prints its square root. But what is surprising about this? Well, the type of <code>readLn</code> is <code>readLn :: Read a =&gt; IO a</code>. What this means is that for any type that can be <code>Read</code> (formally, every type that is an instance of the <code>Read</code> type class), <code>readLn</code> can read it. How did Haskell know that I wanted to read a floating point number? Well, the type of <code>sqrt</code> is <code>sqrt :: Floating a =&gt; a -&gt; a</code>, which essentially means that <code>sqrt</code> can only accept floating point numbers as inputs, and so Haskell inferred what I wanted.</p> <p>What happens when Haskell can't infer what I want? Well, there a few possibilities. If I don't use the return value at all, Haskell simply won't call the function in the first place. However, if I <em>do</em> use the return value, then Haskell will complain that it can't infer the type:</p> <pre><code>main = do n &lt;- readLn print n -- this program results in a compile-time error "Unresolved top-level overloading" </code></pre> <p>I can resolve the ambiguity by specifying the type I want:</p> <pre><code>main = do n &lt;- readLn print (n::Int) -- this compiles (and does what I want) </code></pre> <p>Anyway, what this whole discussion means is that overloading by return value is possible and is done, which answers part of your question.</p> <p>The other part of your question is why more languages don't do it. I'll let others answer that. However, a few comments: the principle reason is probably that the opportunity for confusion is truly greater here than in overloading by argument type. You can also look at rationales from individual languages:</p> <p><a href="http://archive.adaic.com/standards/83rat/html/ratl-11-05.html" rel="nofollow">Ada</a>: "It might appear that the simplest overload resolution rule is to use everything - all information from as wide a context as possible - to resolve the overloaded reference. This rule may be simple, but it is not helpful. It requires the human reader to scan arbitrarily large pieces of text, and to make arbitrarily complex inferences (such as (g) above). We believe that a better rule is one that makes explicit the task a human reader or a compiler must perform, and that makes this task as natural for the human reader as possible."</p> <p>C++ (subsection 7.4.1of Bjarne Stroustrup's "The C++ Programming Language"): "Return types are not considered in overload resolution. The reason is to keep resolution for an individual operator or function call context-independent. Consider:</p> <pre><code>float sqrt(float); double sqrt(double); void f(double da, float fla) { float fl = sqrt(da); // call sqrt(double) double d = sqrt(da); // call sqrt(double) fl = sqrt(fla); // call sqrt(float) d = sqrt(fla); // call sqrt(float) } </code></pre> <p>If the return type were taken into account, it would no longer be possible to look at a call of <code>sqrt()</code> in isolation and determine which function was called." (Note, for comparison, that in Haskell there are no <em>implicit</em> conversions.)</p> <p>Java (<a href="http://java.sun.com/docs/books/jls/third%5Fedition/html/interfaces.html#9.4.1" rel="nofollow">Java Language Specification 9.4.1</a>): "One of the inherited methods must must be return type substitutable for any other inherited method; otherwise, a compile-time error occurs." (Yes, I know this doesn't give a rationale. I'm sure the rationale is given by Gosling in "the Java Programming Language". Maybe someone has a copy? I bet it's the "principle of least surprise" in essence.) However, fun fact about Java: the JVM <em>allows</em> overloading by return value! This is used, for example, in <a href="http://www.drmaciver.com/2008/08/a-curious-fact-about-overloading-in-scala/" rel="nofollow">Scala</a>, and can be accessed <a href="http://today.java.net/pub/a/today/2008/07/31/return-type-based-method-overloading.html" rel="nofollow">directly through Java</a> as well by playing around with internals.</p> <p>PS. As a final note, it is actually possible to overload by return value in C++ with a trick. Witness:</p> <pre><code>struct func { operator string() { return "1";} operator int() { return 2; } }; int main( ) { int x = func(); // calls int version string y = func(); // calls string version double d = func(); // calls int version cout &lt;&lt; func() &lt;&lt; endl; // calls int version func(); // calls neither } </code></pre> http://stackoverflow.com/questions/1646887/code-golf-spider-webs/1656018#1656018 5 Answer by A. Rex for Code Golf: Spider webs A. Rex 2009-11-01T00:23:47Z 2009-11-01T05:34:43Z <h2>Perl: 161 characters</h2> <p>Note that this code includes the starting web in the source. (The doubled backslash at the end is a shame. An earlier version didn't have that.) </p> <pre><code>$_=' \_|_/ _/ \_ \___/ /_|_\\'; for$x(1..&lt;&gt;){ s|(.\S).*([/\\].)|$1$&amp;$2|g; s|\\(.*)/| \\_$1_/$` /$&amp;\\ |; s|(\s+)\K/(.*).$| \\$&amp;/$1 /_$2_\\| } s|_(?=.*$)| |g; print </code></pre> <p>The whitespace within <code>$_</code> is significant (of course), but none of the rest is. If you have a minor suggestion that improves this, please feel free to just edit my code. For example, <a href="http://stackoverflow.com/users/181548/kinopiko">Kinopiko</a> has nicely shaved off 6 characters!</p> <p>Depending on how you count command-line switches, this might be shorter (154 by usual Perl golf rules if I can count correctly):</p> <pre><code>#!perl -ap $_=' \_|_/ _/ \_ \___/ /_|_\\'; s|(.\S).*([/\\].)|$1$&amp;$2|g, s|\S(.*).| \\_$1_/$` /$&amp;\\ |, s|(\s+)\K/(.*).$| \\$&amp;/$1 /_$2_\\|while$F[0]--; s|_(?=.*$)| |g </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/441229#441229 120 Answer by A. Rex for Factorial Algorithms in different languages A. Rex 2009-01-13T23:02:32Z 2009-10-19T11:06:27Z <h1>Polyglot: 5 languages, all using bignums</h1> <p>So, I wrote a polyglot which works in the three languages I often write in, as well as one from my other answer to this question and one I just learned today. It's a standalone program, which reads a single line containing a nonnegative integer and prints a single line containing its factorial. Bignums are used in all languages, so the maximum computable factorial depends only on your computer's resources.</p> <ul> <li><b>Perl</b>: uses built-in bignum package. Run with <code>perl FILENAME</code>.</li> <li><b>Haskell</b>: uses built-in bignums. Run with <code>runhugs FILENAME</code> or your favorite compiler's equivalent.</li> <li><b>C++</b>: requires GMP for bignum support. To compile with g++, use <code>g++ -lgmpxx -lgmp -x c++ FILENAME</code> to link against the right libraries. After compiling, run <code>./a.out</code>. Or use your favorite compiler's equivalent.</li> <li><b>brainf*ck</b>: I wrote some bignum support in <a href="http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/432010#432010">this post</a>. Using <a href="http://aminet.net/package.php?package=dev/lang/brainfuck-2.lha" rel="nofollow">Muller's classic distribution</a>, compile with <code>bf &lt; FILENAME &gt; EXECUTABLE</code>. Make the output executable and run it. Or use your favorite distribution.</li> <li><b>Whitespace</b>: uses built-in bignum support. Run with <code>wspace FILENAME</code>.</li> </ul> <p><i>Edit:</i> added Whitespace as a fifth language. Incidentally, do <em>not</em> wrap the code with <code>&lt;code&gt;</code> tags; it breaks the Whitespace. Also, the code looks much nicer in fixed-width.</p> <pre>char&#32;//#&#32;b=0+0{-&#32;|0*/;&#32;#&gt;&gt;&gt;&gt;,----------[&gt;&gt;&gt;&gt;,-------- #define&#09;a/*#--]&gt;&gt;&gt;&gt;++&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;[&gt;++++++[&lt;------&gt;-]&lt;-&lt;&lt;&lt; #Perl&#09;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&#09;&#32;&lt;&gt;&#32;&lt;&gt;&#32;&lt;&lt;]&gt;&gt;&gt;&gt;[[&gt;&gt;+&lt;&lt;-]&gt;&gt;[&lt;&lt;+&gt;+&gt;-]&lt;-&gt; #C++&#09;--&gt;&lt;&gt;&lt;&gt;&#09;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&#09;&gt;&#32;&lt;&#32;&gt;&#32;&lt;&#09;+&lt;[&gt;&gt;&gt;&gt;+&lt;&lt;&lt;-&lt;[-]]&gt;[-] #Haskell&#32;&gt;&gt;]&gt;[-&lt;&lt;&lt;&lt;&lt;[&lt;&lt;&lt;&lt;]&gt;&gt;&gt;&gt;[[&gt;&gt;+&lt;&lt;-]&gt;&gt;[&lt;&lt;+&gt;+&gt;-]&gt;&gt;] #Whitespace&#09;&gt;&gt;&gt;&gt;[-[&gt;+&lt;-]+&gt;&gt;&gt;&gt;]&lt;&lt;&lt;&lt;[&lt;&lt;&lt;&lt;]&lt;&lt;&lt;&lt;[&lt;&lt;&lt;&lt; #brainf*ck&#32;&gt;&#32;&lt;&#32;]&gt;&gt;&gt;&gt;&gt;[&gt;&gt;&gt;[&gt;&gt;&gt;&gt;]&gt;&gt;&gt;&gt;[&gt;&gt;&gt;&gt;]&lt;&lt;&lt;&lt;[[&gt;&gt;&gt;&gt;*/ exp;&#32;;//;#+&lt;&lt;&lt;&lt;-]&lt;&lt;&lt;&lt;]&gt;&gt;&gt;&gt;+&lt;&lt;&lt;&lt;&lt;&lt;&lt;[&lt;&lt;&lt;&lt;][.POLYGLOT^5. #include&#32;&lt;gmpxx.h&gt;//]&gt;&gt;&gt;&gt;-[&gt;&gt;&gt;[&gt;&gt;&gt;&gt;]&gt;&gt;&gt;&gt;[&gt;&gt;&gt;&gt;]&lt;&lt;&lt;&lt;[&gt;&gt; #define&#09;eval&#32;int&#09;main()//&gt;+&lt;&lt;&lt;-]&gt;&gt;&gt;[&lt;&lt;&lt;+&gt;&gt;+&gt;-&gt; #include&#32;&lt;iostream&gt;//&lt;]&lt;-[&gt;&gt;+&lt;&lt;[-]]&lt;&lt;[&lt;&lt;&lt;&lt;]&gt;&gt;&gt;&gt;[&gt;[&gt;&gt;&gt; #define&#09;print&#32;std::cout&#09;&lt;&lt;&#32;//&#32;&gt;&#09;&lt;+&lt;-]&gt;[&lt;&lt;+&gt;+&gt;-]&lt;&lt;[&gt;&gt;&gt; #define&#09;z&#32;std::cin&gt;&gt;//&lt;&lt;&#32;+&lt;&lt;&lt;-]&gt;&gt;&gt;[&lt;&lt;&lt;+&gt;&gt;+&gt;-]&lt;-&gt;+++++ #define&#32;c/*++++[-&lt;[-[&gt;&gt;&gt;&gt;+&lt;&lt;&lt;&lt;-]]&gt;&gt;&gt;&gt;[&lt;&lt;&lt;&lt;+&gt;&gt;&gt;&gt;-]&lt;&lt;*/ #define&#09;abs&#32;int&#32;$n&#32;//&gt;&lt;&#09;&lt;]&lt;[&gt;&gt;+&lt;&lt;&lt;&lt;[-]&gt;&gt;[&lt;&lt;+&gt;&gt;-]]&gt;&gt;]&lt; #define&#09;uc&#32;mpz_class&#32;fact(int&#09;$n){/*&lt;&lt;&lt;[&lt;&lt;&lt;&lt;]&lt;&lt;&lt;[&lt;&lt; use&#32;bignum;sub#&lt;&lt;]&gt;&gt;&gt;&gt;-]&gt;&gt;&gt;&gt;]&gt;&gt;&gt;[&gt;[-]&gt;&gt;&gt;]&lt;&lt;&lt;&lt;[&gt;&gt;+&lt;&lt;-] z{$_[0+0]=readline(*STDIN);}sub&#32;fact{my($n)=shift;#&gt;&gt; #[&lt;&lt;+&gt;+&gt;-]&lt;-&gt;+&lt;[&gt;-&lt;[-]]&gt;[-&lt;&lt;-&lt;&lt;&lt;&lt;[&gt;&gt;+&lt;&lt;-]&gt;&gt;[&lt;&lt;+&gt;+&gt;+*/ uc;if($n==0){return&#32;1;}return&#32;$n*fact($n-1);&#09;}//;# eval{abs;z($n);print&#32;fact($n);print("\n")/*2;};#-]&lt;-&gt; '+&lt;[&gt;-&lt;[-]]&gt;]&lt;&lt;[&lt;&lt;&lt;&lt;]&lt;&lt;&lt;&lt;-[&gt;&gt;+&lt;&lt;-]&gt;&gt;[&lt;&lt;+&gt;+&gt;-]+&lt;[&gt;-+++ -}--&#09;&lt;[-]]&gt;[-&lt;&lt;++++++++++&lt;&lt;&lt;&lt;-[&gt;&gt;+&lt;&lt;-]&gt;&gt;[&lt;&lt;+&gt;+&gt;-++ fact&#32;0&#09;=&#32;1&#32;--&#32;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&#09;&gt;&#32;&lt;&gt;&lt;&gt;&lt;&#09;]+&lt;[&gt;-&lt;[-]]&gt;]&lt;&lt;[&lt;&lt;+&#32;+ fact&#09;n=n*fact(n-1){-&lt;&lt;]&gt;&gt;&gt;&gt;[[&gt;&gt;+&lt;&lt;-]&gt;&gt;[&lt;&lt;+&gt;+++&gt;+-} main=do{n&lt;-readLn;print(fact&#32;n)}--&#32;+&gt;-]&lt;-&gt;+&lt;[&gt;&gt;&gt;&gt;+&lt;&lt;+ {-x&lt;-&lt;[-]]&gt;[-]&gt;&gt;]&gt;]&gt;&gt;&gt;[&gt;&gt;&gt;&gt;]&lt;&lt;&lt;&lt;[&gt;+++++++[&lt;+++++++&gt;-] &lt;--.&lt;&lt;&lt;&lt;]+written+by+++A+Rex+++2009+.';#+++x-}--x*/;} </pre> http://stackoverflow.com/questions/1575096/code-golf-musical-notes/1583067#1583067 4 Answer by A. Rex for Code Golf: Musical Notes A. Rex 2009-10-17T19:56:31Z 2009-10-17T20:18:40Z <h2>168 characters in Perl 5.10</h2> <p>My original solution was 276 characters, but lots and lots of tweaking reduced it by more than 100 characters!</p> <pre><code>$_=&lt;&gt;; y#481E-GA-D62 #0-9#d; s#.(/(.))?#$"x(7+$&amp;).O.$"x($k=10).($1?"|":$")x3 .$"x(10-$2)."\\"x$2.$"x(9-$&amp;)#ge; s#(..)*?\K (.)#-$2#g; print$/while--$k,s#.{$k}\K.#!print$&amp;#ge </code></pre> <p>If you have a minor suggestion that improves this, please feel free to just edit my code.</p> http://stackoverflow.com/questions/33550/best-open-source-mathematica-equivalent 11 Best open-source Mathematica equivalent A. Rex 2008-08-28T22:24:57Z 2009-10-11T00:21:47Z <p>What is the best open-source equivalent for Mathematica? My requirements are:</p> <ol> <li>(most important) Must be a real computer algebra system (CAS). Notably, I don't want Matlab clones -- I want something that can, at least, symbolically differentiate and integrate.</li> <li>Must be programmable. A functional-programming view of the world, like Mathematica's, would be awesome. The basic datatype of M'ica is the list, which is very convenient!</li> <li>(least important) Similar syntax would be nice.</li> </ol> <p>The ability to deal with objects such as groups or graphs would be a great bonus, but my primary emphasis is on the main things Mathematica and Maple do: algebra and calculus, both symbolic and numeric. Also, plotting is not high on my list of requirements, as I'm mostly a terminal and not GUI user.</p> http://stackoverflow.com/questions/1291377/how-do-i-create-a-good-evaluation-function-for-a-new-board-game 3 How do I create a good evaluation function for a new board game? A. Rex 2009-08-18T01:39:49Z 2009-08-25T06:25:34Z <p>I write programs to play board game variants sometimes. The basic strategy is standard alpha-beta pruning or similar searches, sometimes augmented by the usual approaches to endgames or openings. I've mostly played around with chess variants, so when it comes time to pick my evaluation function, I use a basic chess evaluation function.</p> <p>However, now I am writing a program to play a completely new board game. How do I choose a good or even decent evaluation function?</p> <p>The main challenges are that the same pieces are always on the board, so a usual material function won't change based on position, and the game has been played less than a thousand times or so, so humans don't necessarily play it enough well yet to give insight. (PS. I considered a MoGo approach, but random games aren't likely to terminate.)</p> <p>Any ideas?</p> <p><em>Game details</em>: The game is played on a 10-by-10 board with a fixed six pieces per side. The pieces have certain movement rules, and interact in certain ways, but no piece is ever captured. The goal of the game is to have enough of your pieces in certain special squares on the board. The goal of the computer program is to provide a player which is competitive with or better than current human players.</p> http://stackoverflow.com/questions/1190543/good-algorithm-for-finding-the-diameter-of-a-sparse-graph 10 Good algorithm for finding the diameter of a (sparse) graph? A. Rex 2009-07-27T20:54:34Z 2009-07-28T17:02:02Z <p>I have a large, connected, sparse graph in adjacency-list form. I would like to find two vertices that are as far apart as possible, that is, the <a href="http://en.wikipedia.org/wiki/Graph%5Fdiameter" rel="nofollow">diameter of the graph</a> and two vertices achieving it.</p> <p>I am interested in this problem in both the undirected and directed cases, for different applications. In the directed case, I of course care about directed distance (the shortest directed path from one vertex to another), and I have a strongly-connected graph.</p> <p>In particular, I was wondering if there was a better approach than computing all-pairs shortest paths?</p> <p><em>Edit</em>: By "as far apart as possible", I of course mean the "longest shortest path" -- that is, the maximum over all pairs of vertices of the shortest distance from one to the other.</p> http://stackoverflow.com/questions/124652/should-i-learn-play-with-perl-6 16 Should I learn/play with Perl 6? A. Rex 2008-09-24T00:06:20Z 2009-06-19T19:42:22Z <p>Perl 6 has been under development for over 8 years now, and (as ever) there seems to be no end in sight. However, it has had a reasonable implementation for some time, Pugs, and even has multiple implementations now.</p> <p>When I last took a look at Perl 6 a few years ago, it seemed to me that there were lots of interesting ideas, but that everything was either changing or unspecified. As a result, I ended up picking up Haskell instead -- having been inspired by Pugs.</p> <p>My current favorite languages are Perl (5) and Haskell, and I would only be doing this for side projects of my own. Is it worth playing around with Perl 6 now, or will I still be hitting a moving target that's also sometimes broken? Are the new ideas and syntaxes truly exciting?</p> http://stackoverflow.com/questions/483019/how-does-the-bounty-system-work-in-stackoverflow 19 How does the bounty system work in Stackoverflow? [closed] A. Rex 2009-01-27T11:12:53Z 2009-06-04T14:58:22Z <p>A bounty system was one of the most-requested Stackoverflow features. According to <a href="http://stackoverflow.uservoice.com/pages/general/suggestions/18291" rel="nofollow">the Uservoice item</a> and the <a href="http://stackoverflow.com/faq#bounty">Stackoverflow FAQ</a>, it has now been implemented!</p> <ul> <li>What is a bounty? What is the "Featured" tab on the homepage?</li> <li>When can I offer a bounty? How do I offer a bounty?</li> <li>How long is the bounty period?</li> <li>How do I award the correct answer?</li> <li>What happens if I feel my question is still unanswered?</li> <li>Are bounty awards exempt from the 200 points/day reputation limit?</li> <li>Can I offer a second bounty after the first one has expired?</li> <li>How can I search for questions that have a bounty attached?</li> <li>When is the best time to accept an answer so the answerer is <a href="http://stackoverflow.uservoice.com/pages/general/suggestions/117215-make-bounty-reputation-points-really-immune-to-daily-cap" rel="nofollow">least affected by the daily reputation cap</a>?</li> <li>What happens if there's <strong>no</strong> answer after the bounty period at all?</li> <li>What happens if a bounty question is closed, or deleted as offensive?</li> <li>What happens if the acceptable answer is flagged as community wiki?</li> <li>Can I accept my own answer for a question with a bounty?</li> <li>What happens if the top voted answer belongs to me?</li> <li>What if the author of the top-voted answer deletes their account, or is in the <a href="http://blog.stackoverflow.com/2009/04/a-day-in-the-penalty-box/" rel="nofollow">penalty box</a>?</li> </ul> http://stackoverflow.com/questions/476714/is-there-a-good-online-interactive-regex-tutorial 4 Is there a good, online, interactive regex tutorial? A. Rex 2009-01-24T21:50:00Z 2009-06-03T15:43:22Z <p>Now, I know both SQL and regexes just fine, but a few times on this site, I came across someone working through the exercises on <a href="http://sqlzoo.net/" rel="nofollow">SQLzoo.net</a>. As far as I could tell, this was a wonderful online resource where someone can pretty easily learn SQL by example, writing many toy queries against several toy databases. I will likely redirect people wanting to learn SQL to that site.</p> <p>These SQLzoo people also run some other tutorials, including some on a few programming languages. However, the section on regular expressions is pretty small (<em>e.g.</em>, see <a href="http://progzoo.net/wiki/Strings_Tutorial%2C_Pattern_Matching" rel="nofollow">Java</a>'s page), and I don't think you can actually <em>learn</em> regexes from it. I think a good, online tutorial <em>might</em> help with the onslaught of basic regex questions we have here. (Maybe after the answer, we could suggest that they take a look at the tutorial.)</p> <p>So, <strong>is there a good, online, interactive regex tutorial</strong> along the lines of that SQL tutorial? I looked online briefly, but all I could find were non-interactive tutorials or simple pages (still useful, though!) that let you match a string against a pattern so that you could see what it matches/captures/etc.</p> http://stackoverflow.com/questions/490324/how-do-i-check-if-gcc-is-performing-tail-recursion-optimization 4 How do I check if gcc is performing tail-recursion optimization? A. Rex 2009-01-29T02:42:31Z 2009-05-23T04:17:10Z <p>How do I tell if gcc (more specifically, g++) is optimizing tail recursion <em>in a particular function</em>? (Because it's come up a few times: I don't want to test if gcc can optimize tail recursion in general. I want to know if it optimizes <strong>my</strong> tail recursive function.)</p> <p>If your answer is "look at the generated assembler", I'd like to know exactly what I'm looking for, and whether or not I could write a simple program that examines the assembler to see if there's optimization.</p> <p>PS. I know this appears as part of the question <a href="http://stackoverflow.com/questions/34125/which-if-any-c-compilers-do-tail-recursion-optimization">Which, if any, C++ compilers do tail-recursion optimization?</a> from 5 months ago. However, I don't think <em>this part</em> of that question was answered satisfactorily. (The answer there was "The easiest way to check if the compiler did the optimization (that I know of) is perform a call that would otherwise result in a stack overflow – or looking at the assembly output.")</p> http://stackoverflow.com/questions/33264/book-recommendation-for-haskell/33414#33414 11 Answer by A. Rex for Book recommendation for Haskell? A. Rex 2008-08-28T21:10:39Z 2009-05-04T04:26:09Z <p>I learned Haskell relatively recently, but did not use any physical books. Instead, I used some online guides:</p> <p><a href="http://www.haskell.org/tutorial/" rel="nofollow">A gentle introduction to Haskell</a>, used <em>over and over again</em>. I think this might be a great first step.</p> <p><a href="http://darcs.haskell.org/yaht/yaht.pdf" rel="nofollow">Yet another Haskell tutorial</a>. I enjoyed this book a lot, in particular because I tried to solve the exercises. (Sometimes I tried too hard. If you want to, also, try func2 from Exercise 7.1 -- the official solution is not correct.)</p> <p>I did <em>not</em> use the official specification, except maybe once or twice because I wanted to check the official spec for some nuance: <a href="http://haskell.org/onlinereport/" rel="nofollow">Haskell 98 report</a></p> <p>You may also be interested in two language-specific introductions (I did not use either, however, and so I cannot recommend them): <a href="http://www.haskell.org/~pairwise/intro/intro.html" rel="nofollow">Haskell tutorial for C programmers</a> and <a href="http://www.shlomifish.org/lecture/Perl/Haskell/slides/" rel="nofollow">Haskell for Perl programmers</a></p> <p>I did, however, read some papers on Haskell: <a href="http://research.microsoft.com/~simonpj/papers/history-of-haskell/index.htm" rel="nofollow">A history of Haskell: being lazy with class</a></p> <p>I know this is getting ahead of myself, but if you're interested in STM (software transactional memory), I enjoyed <a href="http://research.microsoft.com/~simonpj/Papers/stm/beautiful.pdf" rel="nofollow">Beautiful concurrency</a>.</p> <p>I specifically learned Haskell to write a parser. As such, I used the following guides for the Haskell library Parsec: (as a side effect, I found that I understood monads better) <a href="http://research.microsoft.com/users/daan/download/parsec/parsec-letter.pdf" rel="nofollow">Parsec, a fast combinator parser</a> (the official guide) and <a href="http://research.microsoft.com/users/daan/download/papers/parsec-paper.pdf" rel="nofollow">Parsec: direct style monadic parser combinators for the real world</a></p> <p>Finally, as <a href="http://stackoverflow.com/questions/33264/book-recommendation-for-haskell/33807#33807">John suggested</a> and to complete the list, a more recent one is "<a href="http://book.realworldhaskell.org/beta/" rel="nofollow">Real World Haskell</a>".</p> http://stackoverflow.com/questions/475350/can-the-halting-problem-be-solved-for-any-non-turing-languages/475429#475429 7 Answer by A. Rex for Can the halting problem be solved for any non-turing languages? A. Rex 2009-01-24T03:26:50Z 2009-05-02T12:25:22Z <p>Yes. One important class of this kind are <a href="http://en.wikipedia.org/wiki/Primitive%5Frecursive%5Ffunction" rel="nofollow">primitive recursive functions</a>. This class includes all of the basic things you expect to be able to do with numbers (addition, multiplication, etc.), as well as some complex classes like <a href="#475369" rel="nofollow">@adrian</a> has mentioned (regular expressions/finite automata, context-free grammars/pushdown automata). There do, however, exist functions that are not primitive recursive, such as the <a href="http://en.wikipedia.org/wiki/Ackermann%5Ffunction" rel="nofollow">Ackermann function</a>.</p> <p>It's actually pretty easy to understand primitive recursive functions. They're the functions that you could get in a programming language that had no true recursion (so a function f cannot call itself, whether directly or by calling another function g that then calls f, etc.) and has no while-loops, instead having bounded for-loops. A bounded for-loop is one like "for i from 1 to r" where r is a variable that has already been computed earlier in the program; also, i cannot be modified within the for-loop. The point of such a programming language is that <em>every</em> program halts.</p> <p>Most programs we write are actually primitive recursive (I mean, can be translated into such a language).</p> http://stackoverflow.com/questions/755144/how-do-i-transparently-compress-decompress-a-file-as-a-program-writes-to-reads-fr 2 How do I transparently compress/decompress a file as a program writes to/reads from it? A. Rex 2009-04-16T07:56:57Z 2009-04-16T10:18:48Z <p>I have a program that reads and writes very large text files. However, because of the format of these files (they are ASCII representations of what should have been binary data), these files are actually very easily compressed. For example, some of these files are over 10GB in size, but gzip achieves 95% compression.</p> <p>I can't modify the program but disk space is precious, so I need to set up a way that it can read and write these files while they're being transparently compressed and decompressed.</p> <p>The program can only read and write files, so as far as I understand, I need to set up a named pipe for both input and output. Some people are suggesting a compressed filesystem instead, which seems like it would work, too. How do I make either work?</p> <p>Technical information: I'm on a modern Linux. The program reads a separate input and output file. It reads through the input file in order, though twice. It writes the output file in order.</p> http://stackoverflow.com/questions/749061/in-c-how-can-i-get-a-pointer-into-a-vector 1 In C++, how can I get a pointer into a vector? A. Rex 2009-04-14T19:42:11Z 2009-04-16T07:51:57Z <p>I'm writing some C++ code that manipulates a bunch of vectors that are changing in size and are thus being reallocated constantly.</p> <p>I would like to get a "pointer" into these vectors that remains valid even after reallocation of the vector. More specifically, I just want these "pointers" to remember which vector they point into and the index to which they point. When I dereference them using the standard (*ptr) syntax, I just want them to do the obvious lookup.</p> <p>Obviously, actual pointers will not be valid after reallocation, and my understanding is that iterators aren't valid after reallocation either. Note also that I don't care if elements are inserted before my objects, so these "pointers" really don't have to remember anything but a vector and an index.</p> <p>Now, I could easily write such a class myself. Has anyone (Boost? STL?) done it for me already?</p> <p><strong>Edit</strong>: The answers don't address my question. <em>I asked if this functionality is any standard library.</em> I take the responses as a "no"?</p> http://stackoverflow.com/questions/605037/c-convenient-way-to-access-operator-from-within-class 5 C++: Convenient way to access operator[] from within class? A. Rex 2009-03-03T03:46:22Z 2009-03-03T05:56:44Z <p>I have a C++ class that overloads <code>operator[]</code>, the array subscript/brackets operator. This is awfully convenient outside of my class, where I can write <code>foo[bar</code>]. However, I can't figure out how to use this notation when I'm implementing methods <em>inside</em> my class.</p> <p>I know I can write <code>operator[](bar)</code> or <code>this-&gt;operator[](bar)</code> but those are fairly unwieldy and take away a lot of the convenience of the operator in the first place. (I also know I can just add a new method that calls the operator.) Is there a way I can write <code>this[bar]</code> or <code>this-&gt;[bar]</code> or something similarly nice?</p> <p><em>Note</em>: This question may also apply to the many unary operators (e.g., how can I call <code>foo++</code> from within the class?), but I personally only care about <code>operator[]</code>.</p> <p><em>Edit</em>: I realized soon after posting that I can use <code>(*this)[bar]</code>. All of the answers so far have suggested this as well. Are there any other alternatives?</p> http://stackoverflow.com/questions/595526/how-can-i-become-better-at-negotiation 3 How can I become better at negotiation? [closed] A. Rex 2009-02-27T16:37:51Z 2009-02-27T16:54:05Z <p>How do I become a better negotiator? I'm talking about things such as salary, benefits, etc., but also about smaller things like choice of project or working conditions.</p> <p>I feel like I negotiate poorly in part because I would like to keep good ties with the people I work with (or might work with in the future, in case I'm applying for a new job). Is being nice and negotiating well necessary contradictory?</p> <p>To the people who will inevitably believe this question doesn't belong here: for what it's worth, Stack Overflow is largely a community of developers. Most of us hold jobs in software engineering, and many of us are being paid less than we deserve. I believe this question will be directly relevant to the community.</p> http://stackoverflow.com/questions/588973/possible-infinite-loop-on-math-equation/588982#588982 7 Answer by A. Rex for Possible infinite loop on math equation? A. Rex 2009-02-26T03:32:44Z 2009-02-26T03:32:44Z <p>Your goal is to compute the integral of <code>f</code> from <code>x1</code> to <code>x2</code>. For example, you may wish to compute the integral of <code>sin(x)</code> from <code>0</code> to <code>pi</code>.</p> <p>Using Monte Carlo integration, you can approximate this by sampling random points in the interval <code>[x1,x2]</code> and evaluating <code>f</code> at those points. Perhaps you'd like to call this <code>MonteCarloIntegrate( f, x1, x2 )</code>.</p> <p>So no, <code>MonteCarloIntegrate</code> does not "feed back" into itself. It calls a function <code>f</code>, the function you are trying to numerically integrate, e.g. <code>sin</code>.</p> http://stackoverflow.com/questions/451771/whats-the-highest-level-math-youve-used-in-the-real-world/576958#576958 5 Answer by A. Rex for What's the highest-level math you've used in the real world? A. Rex 2009-02-23T09:04:06Z 2009-02-23T09:04:06Z <p>Here's a summary of the answers. The following subjects were mentioned <em>a lot</em>:</p> <ul> <li><strong>Linear algebra</strong>, including vectors and matrices</li> <li><strong>Statistics</strong> and probability</li> <li><strong>Calculus</strong>, mostly one variable but also some multivariable</li> <li><strong>Geometry</strong>, including trigonometry here</li> <li><strong>Discrete math</strong>, including combinatorics and graph theory</li> </ul> <p>Differential equations were mentioned frequently. Some subjects (financial math, numerical analysis, Fourier transforms) were mentioned a few times, while a few people mentioned more unique subjects (control theory, queuing theory, complex variables, measure theory). <strong>On the flip side</strong>, some people have mentioned that their mathematical needs were very slim, being bounded from above by arithmetic, algebra, or calculus, depending on the person.</p> http://stackoverflow.com/questions/576810/algorithms-for-big-o-analysis/576876#576876 11 Answer by A. Rex for Algorithms for Big O Analysis A. Rex 2009-02-23T08:14:46Z 2009-02-23T08:40:42Z <p>I have (quite) a few examples:</p> <ul> <li>The <a href="http://en.wikipedia.org/wiki/Disjoint-set_data_structure" rel="nofollow">union-find</a> data structure, which supports operations in (amortized) inverse Ackermann time. It's particularly nice because the data structure is incredibly easy to code.</li> <li><a href="http://en.wikipedia.org/wiki/Splay_tree" rel="nofollow">Splay trees</a>, which are self-balancing binary trees (that is, no extra information is stored other than the BST -- no red/black information. <a href="http://en.wikipedia.org/wiki/Amortized_analysis" rel="nofollow">Amortized analysis</a> was essentially invented to prove bounds for splay trees; splay trees run in <em>amortized</em> logarithmic time, but worst-case linear time. The proofs are cool.</li> <li><a href="http://en.wikipedia.org/wiki/Fibonacci_heap" rel="nofollow">Fibonacci heaps</a>, which perform most of the priority queue operations in amortized constant time, thus improving the runtime of <a href="http://en.wikipedia.org/wiki/Dijkstra%27s_algorithm" rel="nofollow">Dijkstra's algorithm</a> and other problems. As with splay trees, there are slick "potential function" proofs.</li> <li>Bernard Chazelle's algorithm for computing minimum spanning trees in linear times inverse Ackermann time. The algorithm uses <a href="http://en.wikipedia.org/wiki/Soft_heap" rel="nofollow">soft heaps</a>, a variant of the traditional <a href="http://en.wikipedia.org/wiki/Priority_queue" rel="nofollow">priority queue</a>, except that some "corruption" might occur and queries might not be answered correctly.</li> <li>While on the topic of MSTs: an optimal algorithm has been <a href="http://www.eecs.umich.edu/~pettie/papers/jacm-optmsf.pdf" rel="nofollow">given by Pettie and Ramachandran</a>, but we don't know the running time!</li> <li>Lots of randomized algorithms have interested analyses. I'll only mention one example: Delaunay triangulation can be computed in expected O(n log n) time by <a href="http://en.wikipedia.org/wiki/Delaunay_triangulation#Incremental" rel="nofollow">incrementally adding points</a>; the analysis is apparently intricate, though I haven't seen it.</li> <li>Algorithms that use "bit tricks" can be neat, e.g. <a href="http://www.sice.umkc.edu/~hanyij/research/isortlln.ps" rel="nofollow">sorting in O(n log log n)</a> time (and linear space) -- that's right, it breaks the O(n log n) barrier by using more than just comparisons.</li> <li><a href="http://en.wikipedia.org/wiki/Cache-oblivious_algorithm" rel="nofollow">Cache-oblivious algorithms</a> often have interesting analyses. For example, <a href="http://courses.csail.mit.edu/6.851/spring07/scribe/lec20.pdf" rel="nofollow">cache-oblivious priority queues</a> (see page 3) use log log n levels of sizes n, n<sup>2/3</sup>, n<sup>4/9</sup>, and so on.</li> <li>(Static) range-minimum queries on arrays are neat. The <a href="http://www.ics.uci.edu/~eppstein/261/BenFar-LCA-00.pdf" rel="nofollow">standard proof</a> tests your limits with respect to reduction: range-minimum queries is reduced to least common ancestor in trees, which is in turn reduced to a range-minimum queries in a specific <em>kind</em> of arrays. The final step uses a cute trick, too.</li> </ul> http://stackoverflow.com/questions/502547/restful-webservice-to-sum-a-list-of-numbers/576087#576087 4 Answer by A. Rex for RESTful webservice to sum a list of numbers. A. Rex 2009-02-22T23:37:35Z 2009-02-22T23:37:35Z <h1>Brainf&#042;ck</h1> <p>The Apache module <a href="http://modbf.sourceforge.net/" rel="nofollow">mod&#95;bf</a> (see also <a href="http://esoteric.sange.fi/brainfuck/utils/mod_bf-0.2/" rel="nofollow">the source here</a>) lets you use <a href="http://en.wikipedia.org/wiki/Brainfuck" rel="nofollow">Brainf&#042;ck</a> programs in a CGI fashion. If you call the following program like <code>http://www.example.com/test.bf?sum=1+2+3</code>, it will add your numbers.</p> <pre><code>,,,,[-]&gt;&gt;&gt;&gt;&gt;&gt;+&lt;&lt;+[&lt;&lt;+&gt;&gt;,[----------[----------------------[- ----------[----[&gt;&gt;&gt;]&lt;&lt;&lt;[[-&gt;&gt;&gt;+&lt;&lt;&lt;]&lt;&lt;&lt;]&gt;-&gt;&gt;]]&lt;&lt;&lt;+&gt;&gt;&gt;]]&lt;&lt;[-&gt;&gt;&gt; &gt;&gt;[&gt;&gt;&gt;]&lt;&lt;&lt;[-&lt;[-&lt;+&gt;&gt;&gt;+&lt;&lt;]&gt;&gt;+&lt;&lt;&lt;[&gt;&gt;&gt;-&lt;&lt;&lt;[-]]&gt;&gt;&gt;[-&lt;&lt;+&gt;&gt;]&lt;&lt;&lt;&lt;]&gt;&gt; [&gt;&gt;&gt;]+[&lt;&lt;&lt;]&gt;&gt;&gt;[&gt;[-&lt;+&gt;]&lt;[-&gt;+&gt;+&lt;&lt;]++++++++++[-&gt;[-&lt;&lt;&lt;+&gt;+&gt;&gt;]&lt;&lt;&lt;[ &gt;-[-&gt;&gt;+&lt;&lt;]&lt;[-]]&gt;&gt;]&gt;[&gt;&gt;+&lt;[-]&lt;[-&gt;+&lt;]]&gt;[-&lt;&lt;+&gt;&gt;]&gt;]&lt;&lt;&lt;-[-&gt;+&lt;]&gt;[&lt;+ &gt;[-&lt;+&gt;]]&lt;&lt;&lt;&lt;[&lt;&lt;&lt;]&lt;]&lt;[-&gt;&gt;&gt;+&lt;&lt;&lt;]&gt;&gt;&gt;]&gt;&gt;[&gt;[-]&gt;&gt;]&gt;&gt;&gt;&gt;++++++++[-&lt;+ +++++++&gt;]&lt;+++.&gt;++++[-&lt;+++++++++++&gt;]&lt;.-.++++++.&gt;+++[-&lt;-----&gt;] &lt;.&gt;+++[-&lt;+++&gt;]&lt;.++++++.&gt;&gt;+ A Rex ++++[-&lt;+++++++++&gt;]&lt;.------- ------[-&lt;-&gt;]&lt;.&gt;++++++[-&lt;++++++&gt;]&lt;+.&gt;+++[-&lt;---&gt;]&lt;.&gt;+++[-&lt;---- &gt;]&lt;+.&gt;++++++[-&lt;-------&gt;]&lt;-.&gt;+++++[-&lt;-----&gt;]&lt;-.&gt;+++++++[-&lt;+++ +++++++++&gt;]&lt;.&gt;+++[-&lt;-----&gt;]&lt;.&gt;+++[-&lt;++++++&gt;]&lt;+.----.&gt;+++++++ [-&lt;----------&gt;]&lt;+.&gt;++++++++[-&lt;+++++++++&gt;]&lt;+.&gt;+++[-&lt;----&gt;]&lt;+. -.&gt;&gt;++[-&lt;+++++&gt;]&lt;..[-]&lt;+[-&lt;+&lt;+&gt;&gt;]&gt;++++++[-&lt;++++++++++&gt;]&lt;.&lt;++ ++++.++.&lt;.&gt;&gt;++.&lt;&lt;&lt;&lt;&lt;&lt;[&gt;++++++[-&lt;++++++++&gt;]&lt;-.&lt;&lt;&lt;]&gt;&gt;&gt;[&gt;&gt;&gt;]&gt;&gt;&gt; --.&gt;&gt;+++++++[-&lt;+++++++&gt;]&lt;--.&lt;&lt;--.++.&lt;.&gt;&gt;++.&gt;&gt;&gt;++[-&lt;+++++&gt;]&lt;. </code></pre> <h2>Known issues:</h2> <ul> <li>You can only add non-negative integers.</li> <li>Input is not validated in any way.</li> <li>The standard mod&#95;bf implementation won't let this add more than 30-digit numbers or so. It's a shame, because the program can actually add arbitrarily large integers (and as such, <a href="http://aminet.net/package.php?package=dev/lang/brainfuck-2.lha" rel="nofollow">Muller's classic implementation</a> lets you add multi-thousand-digit numbers). You can fix this issue by changing <code>ARR_SIZE</code> in mod&#95;bf.</li> <li>More than half of the source is just outputting <code>Content-Type: text/xml</code>. This, too, is really a shame because it makes brainf&#042;ck look unnecessarily verbose. =P (Compare <a href="http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/432010#432010">this program</a>, which is slightly shorter but manages to compute arbitrarily large factorials.)</li> </ul> http://stackoverflow.com/questions/1839079/can-this-roman-number-to-integer-converter-code-be-shorter/1843627#1843627 Comment by A. Rex on Can this Roman Number to Integer converter code be shorter? A. Rex 2009-12-04T01:02:31Z 2009-12-04T01:02:31Z Yeah, unfortunately because the codegolf.com competition never ends, you can't see what other people are doing. It just so happens that eyepopslikeamosquito revealed his solutions elsewhere ... http://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer/424936#424936 Comment by A. Rex on Fastest way to determine if an integer's square root is an integer A. Rex 2009-12-03T23:50:42Z 2009-12-03T23:50:42Z @Dimitre Novatchev: No, it would not be too difficult. If the number is a perfect square, then its square root is <code>r</code> times some power of 2, which can be determined when dividing out by powers of 4. http://stackoverflow.com/questions/1831386/programmer-puzzle-encoding-a-chess-board-state-throughout-a-game/1831539#1831539 Comment by A. Rex on Programmer Puzzle: Encoding a chess board state throughout a game. A. Rex 2009-12-02T20:11:07Z 2009-12-02T20:11:07Z This doesn't affect your reasoning, but a tiny correction: a pawn can have four moves not including promotions, or 12 moves including promotions. Example pawn at e2: e3, e4, exd3, exf3. Example pawn at e7: e8Q, e8N, e8R, e8B, exd8Q, exd8N, exd8R, exd8B, exf8Q, exf8N, exf8R, exf8B. http://stackoverflow.com/questions/1831386/programmer-puzzle-encoding-a-chess-board-state-throughout-a-game/1831428#1831428 Comment by A. Rex on Programmer Puzzle: Encoding a chess board state throughout a game. A. Rex 2009-12-02T20:09:07Z 2009-12-02T20:09:07Z This doesn't affect your reasoning, but a tiny correction: a pawn can have four moves not including promotions, or 12 moves including promotions. Example pawn at e2: e3, e4, exd3, exf3. Example pawn at e7: e8Q, e8N, e8R, e8B, exd8Q, exd8N, exd8R, exd8B, exf8Q, exf8N, exf8R, exf8B. http://stackoverflow.com/questions/1831386/programmer-puzzle-encoding-a-chess-board-state-throughout-a-game/1831435#1831435 Comment by A. Rex on Programmer Puzzle: Encoding a chess board state throughout a game. A. Rex 2009-12-02T20:05:01Z 2009-12-02T20:05:01Z @reinier: He's claiming it's irrelevant if a current <b>queen</b> was originally a queen or originally a pawn. http://stackoverflow.com/questions/1831386/programmer-puzzle-encoding-a-chess-board-state-throughout-a-game Comment by A. Rex on Programmer Puzzle: Encoding a chess board state throughout a game. A. Rex 2009-12-02T10:02:02Z 2009-12-02T10:02:02Z @Vilx: Oh, my solution was only mathematical. You may have some issues in practice. I guess it was unclear that I was joking ... =) http://stackoverflow.com/questions/1831386/programmer-puzzle-encoding-a-chess-board-state-throughout-a-game Comment by A. Rex on Programmer Puzzle: Encoding a chess board state throughout a game. A. Rex 2009-12-02T09:53:30Z 2009-12-02T09:53:30Z Chess positions: enumerate all possible positions and number them. Then encode in binary accordingly. A similar approach works for moves: enumerate all possible sequences of moves, beginning with 0 moves, 1 move, 2 moves, and so on and number them. Again, encode in binary accordingly. In <b>some</b> sense, this is provably optimal. http://stackoverflow.com/questions/1831386/programmer-puzzle-encoding-a-chess-board-state-throughout-a-game/1831408#1831408 Comment by A. Rex on Programmer Puzzle: Encoding a chess board state throughout a game. A. Rex 2009-12-02T09:40:32Z 2009-12-02T09:40:32Z Good post. Small correction: castling requires 4 bits, one for each way of castling (white and black, kingside and queenside), because the rooks might have moved and then moved back also. Somewhat more important: you should probably include whose move it is. =) http://stackoverflow.com/questions/1766675/code-golf-running-water Comment by A. Rex on Code Golf: Running Water A. Rex 2009-11-25T16:38:56Z 2009-11-25T16:38:56Z @LiraNuna: Wait, do you have a solution in 300 strokes? Why don't you post it? http://stackoverflow.com/questions/1770427/code-golf-what-is-the-shortest-program-that-compiles-and-crashes/1772392#1772392 Comment by A. Rex on Code-Golf: What is the shortest program that compiles and crashes? A. Rex 2009-11-21T05:35:16Z 2009-11-21T05:35:16Z @Mark and leppie: That code DOES compile, as <code>perl -c</code> verifies. The error is a runtime error, and Perl just helpfully identifies the location in the program for you. http://stackoverflow.com/questions/1726698/code-golf-sierpinskis-triangle/1727136#1727136 Comment by A. Rex on Code Golf: Sierpinski's Triangle A. Rex 2009-11-13T07:51:44Z 2009-11-13T07:51:44Z You can save 5 characters by reading from stdin with <code>&lt;&gt;</code> if you want. If you don't, <code>pop</code> still saves characters. Either way, you can use the ridiculous construct <code>$c=2&#42;&#42;~-&lt;&gt;;</code> or <code>$c=2&#42;&#42;~-pop;</code> to save on parentheses around the <code>/2</code>. http://stackoverflow.com/questions/1726698/code-golf-sierpinskis-triangle/1727351#1727351 Comment by A. Rex on Code Golf: Sierpinski's Triangle A. Rex 2009-11-13T07:14:50Z 2009-11-13T07:14:50Z Here's a 104-stroke solution that might inspire someone: <code>$&#95;='/'.$&quot;x(1+1&lt;&lt;&lt;&gt;).&quot;/ \n&quot;;$\=$&#95;.$\while s'.&#95;&#95;.' /\ 'g||s#/.+?\S.#$&quot;.&quot;/&#95;&#95;\\&quot;x($&amp;=~y&#47;&#47;/c/4).$&quot;#ge;print&quot;&quot;</code> -- yes, it prints the empty string at the end =) http://stackoverflow.com/questions/1726698/code-golf-sierpinskis-triangle/1727351#1727351 Comment by A. Rex on Code Golf: Sierpinski's Triangle A. Rex 2009-11-13T06:38:29Z 2009-11-13T06:38:29Z Re <code>#!perl</code>: I include that because it's the shortest string so that Perl itself will interpret the switches. If I can push them to the command-line, great! If not, I can count those as raw characters. I think the second solution should be 87 characters now, which of course is longer than the first. It is possible in theory, however, to have it be less -- see my improvements on @mobrule's solution for the &quot;Musical Notes&quot; competition: <a href="http://stackoverflow.com/questions/1575096/code-golf-musical-notes/1575427#1575427" rel="nofollow" title="code golf musical notes">stackoverflow.com/questions/1575096/&hellip;</a> http://stackoverflow.com/questions/1726698/code-golf-sierpinskis-triangle/1727351#1727351 Comment by A. Rex on Code Golf: Sierpinski's Triangle A. Rex 2009-11-13T06:34:49Z 2009-11-13T06:34:49Z @Chris Lutz: That's fine. I put the solutions in this order because I presume the first is the minimal one accepted by this particular golfing community. The Perl golf community would accept the second. It's worth noting that Perl golf has a long and storied tradition and I believe is the source of the word &quot;golf&quot;. http://stackoverflow.com/questions/1726698/code-golf-sierpinskis-triangle/1727351#1727351 Comment by A. Rex on Code Golf: Sierpinski's Triangle A. Rex 2009-11-13T06:18:47Z 2009-11-13T06:18:47Z @ephemient: I wasn't counting the newlines you just deleted anyway; they were there only for readability reasons (if you can say &quot;readability&quot; in this context). After I'm sure you're done editing, I'll change the answer to make that clear. Thanks for the help, though.