User ShreevatsaR - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T02:02:47Zhttp://stackoverflow.com/feeds/user/4958http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1830005/inferred-type-appears-to-detect-an-infinite-loop-but-whats-really-happening/1830251#183025117Answer by ShreevatsaR for Inferred type appears to detect an infinite loop, but what's really happening?ShreevatsaR2009-12-02T02:13:28Z2009-12-02T15:45:22Z<p>This is indeed a remarkable example; an infinite loop being detected, essentially, at <em>compile time</em>! There is nothing special about the Hindley–Milner inference in this example; it just proceeds as usual.</p>
<p>Note that ghc gets the types of <code>split</code> and <code>merge</code> correctly:</p>
<pre><code>*Main> :t split
split :: [a] -> ([a], [a])
*Main> :t merge
merge :: (Ord t) => [t] -> [t] -> [t]
</code></pre>
<p>Now when it comes to <code>mergesort</code>, it is, in general, a function t<sub>1</sub>→t<sub>2</sub> for some types t<sub>1</sub> and t<sub>2</sub>. Then it sees the first line:</p>
<pre><code>mergesort [] = []
</code></pre>
<p>and realizes that t<sub>1</sub> and t<sub>2</sub> must be list types, say t<sub>1</sub>=[t<sub>3</sub>] and t<sub>2</sub>=[t<sub>4</sub>]. So mergesort must be a function [t<sub>3</sub>]→[t<sub>4</sub>]. The next line </p>
<pre><code>mergesort xs = merge (mergesort p) (mergesort q)
where (p,q) = split xs
</code></pre>
<p>tells it that:</p>
<ul>
<li>xs must be an input to split, i.e., of type [a] for some a (which it already is, for a=t<sub>3</sub>).</li>
<li>So <code>p</code> and <code>q</code> are also of type [t<sub>3</sub>], since <code>split</code> is [a]→([a],[a])</li>
<li><code>mergesort p</code>, therefore, (recall that mergesort is believed to be of type [t<sub>3</sub>]→[t<sub>4</sub>]) is of type [t<sub>4</sub>].</li>
<li><code>mergesort q</code> is of type [t<sub>4</sub>] for exactly the same reason.</li>
<li>As <code>merge</code> has type <code>(Ord t) => [t] -> [t] -> [t]</code>, and the inputs in the expression <code>merge (mergesort p) (mergesort q)</code> are both of type [t<sub>4</sub>], the type t<sub>4</sub> must be in <code>Ord</code>.</li>
<li>Finally, the type of <code>merge (mergesort p) (mergesort q)</code> is the same as both its inputs, namely [t<sub>4</sub>]. This fits with the previously known type [t<sub>3</sub>]→[t<sub>4</sub>] for <code>mergesort</code>, so there are no more inferences to be done and the "unification" part of the Hindley–Milner algorithm is complete. <code>mergesort</code> is of type [t<sub>3</sub>]→[t<sub>4</sub>] with t<sub>4</sub> in <code>Ord</code>. </li>
</ul>
<p>That's why you get:</p>
<pre><code>*Main> :t mergesort
mergesort :: (Ord a) => [t] -> [a]
</code></pre>
<p>(The description above in terms of logical inference is equivalent to what the algorithm does, but the specific sequence of steps the algorithm follows is simply that given on the Wikipedia page, for example.)</p>
http://stackoverflow.com/questions/1801135/what-is-the-meaning-of-o-polylogn-in-particular-how-is-polylogn-defined/1801162#18011625Answer by ShreevatsaR for What is the meaning of O( polylog(n) )? In particular, how is polylog(n) defined?ShreevatsaR2009-11-26T01:55:02Z2009-11-26T02:02:05Z<p>Abuse of notation or not, polylog(n) does mean "some polynomial in log(n)", just as "poly(n)" can mean "some polynomial in n". So O(polylog(n)) means "O((log n)<sup>k</sup>) for some k". (See <a href="http://en.wikipedia.org/wiki/Polylogarithmic" rel="nofollow">Wikipedia: Polylogarithmic</a>, or, to see it in context, Prof. Scott Aaronson's blog: <a href="http://scottaaronson.com/blog/?p=263" rel="nofollow">My Favorite Growth Rates</a>.)</p>
<p>The point is that just as we often don't care about constant factors, it is often convenient to ignore powers of logarithms. Sometimes the "log factors" are ignored entirely and you might see "Õ(f(n))" — O with a tilde above it — which <a href="http://en.wikipedia.org/wiki/%C3%95" rel="nofollow">means</a> "O(f(n) polylog(f(n)))", i.e., "O(f(n) (log f(n))<sup>k</sup>) for some k".</p>
http://stackoverflow.com/questions/1746382/less-restrictive-gpl-like-license/1746419#17464198Answer by ShreevatsaR for less-restrictive GPL-like licenseShreevatsaR2009-11-17T03:34:10Z2009-11-17T03:34:10Z<p>Please, for heaven's sake, don't create new licenses (or do anything that may create new ones); we have enough license proliferation already. GPL is more or less the standard for copyleft free-software licenses, and then there are a bunch (mainly BSD/MIT) of permissive free-software licenses. Your requirement (2) rules them out, which leaves only copyleft: and that's GPL.</p>
<p>There are no other "GPL-like" licenses in significant use that you need to worry about allowing use of your code under, so you're trying to solve a non-existent problem.</p>
<p>If the problem <em>does</em> come into existence, and there is a project under another license that wants to use your code, you can get all your code's contributors to explicitly allow ("dual-license") that usage, anyway.</p>
http://stackoverflow.com/questions/1719752/proving-with-floor-and-ceiling-functions-formally-for-computer-scientists/1719920#17199203Answer by ShreevatsaR for Proving with floor and ceiling functions formally for computer scientistsShreevatsaR2009-11-12T04:39:59Z2009-11-12T04:39:59Z<p>A great book that will make you extremely proficient at working with floors and ceilings, as well as several other useful things besides, is <a href="http://en.wikipedia.org/wiki/Concrete_Mathematics" rel="nofollow"><em>Concrete Mathematics: A Foundation for Computer Science</em></a> by Graham, Knuth and Patashnik. It's a lot of fun, you should read it!</p>
<p>For your specific questions, there are simple examples/counterexamples for each:</p>
<ol>
<li>"For all x, for all y, floor(x) * ceil(y) <= floor(xy)" — Just take x=1, and y not integer: then it's saying that ceil(y) ≤ floor(y), which is obviously not true.</li>
<li>"Some X, Some Y, floor(x) * ceil(y) >= floor(xy)" — Again, take x=1, and any y: then it's saying that ceil(y) ≥ floor(y), which is true.</li>
<li>"For all X, for all Y, floor(x) * ceil(y) > ceil(xy)" — Take x=1 again! It says that ceil(y) > ceil(y), which cannot be true. You can in fact get strictly less, by taking e.g. x=0.99 and y positive: then the left-hand-side is 0, while the right is positive.</li>
</ol>
http://stackoverflow.com/questions/1648976/finding-the-highest-2-numbers-computer-science/1649583#16495832Answer by ShreevatsaR for Finding the highest 2 numbers- computer scienceShreevatsaR2009-10-30T12:39:25Z2009-10-30T12:47:38Z<p>Yes, it's possible to do it in no more than (n + log n). I really can't tell you how without giving away the answer, but let me try. :-) </p>
<p>Take the n numbers, compare them in pairs at a time. Take the ceil(n/2) "winners", and repeat, "like a binary tree". Questions: how many comparisons does it take to find the largest one? How many people does this "winner" win against? To whom might the second largest have lost? So how many comparisons does it now take to find the second largest number?</p>
<p>The answer turns out to be a total of <strong>n-1 + ceiling(log n) - 1</strong> comparisons, where the log is to base 2. You can also prove using an adversarial argument that it is not possible to do better than this in the worst case.</p>
http://stackoverflow.com/questions/1621364/how-to-find-largest-triangle-in-convex-hull-aside-from-brute-force-search/1621913#16219137Answer by ShreevatsaR for How to find largest triangle in convex hull aside from brute force searchShreevatsaR2009-10-25T19:59:01Z2009-10-25T19:59:01Z<p>Yes, you can do significantly better than brute-force. </p>
<p>By brute-force I assume you mean checking all triples of points, and picking the one with maximum area. This runs in <strong>O(n<sup>3</sup>) time</strong>, but it turns out that it is possible to do it in not just O(n<sup>2</sup>) but in <strong>O(n) time</strong>!</p>
<p>By first sorting the points / computing the convex hull (in O(n log n) time) if necessary, we can assume we have the convex polygon/hull with the points cyclically sorted in the order they appear in the polygon. Call the points 1, 2, 3, … , n. Let (variable) points A, B, and C, start as 1, 2, and 3 respectively (in the cyclic order). We will move A, B, C until ABC is the maximum-area triangle. (The idea is similar to the <a href="http://en.wikipedia.org/wiki/Rotating_calipers" rel="nofollow">rotating calipers</a> method, as used when computing the <a href="http://stackoverflow.com/questions/321989/greatest-linear-dimension-2d-set-of-points">diameter (farthest pair)</a>.)</p>
<p>With A and B fixed, advance C (e.g. initially, with A=1, B=2, C is advanced through C=3, C=4, …) as long as the area of the triangle increases, i.e., as long as Area(A,B,C) ≤ Area(A,B,C+1). This point C will be the one that maximizes Area(ABC) for those fixed A and B. (In other words, the function Area(ABC) is <em>unimodal</em> as a function of C.)</p>
<p>Next, advance B (without changing A and C) if that increases the area. If so, again advance C as above. Then advance B again if possible, etc. This will give the maximum area triangle with A as one of the vertices. <sub>(The part up to here should be easy to prove, and simply doing this separately for each A would give O(n<sup>2</sup>). But read on.)</sub> Now advance A again, if it improves the area, etc. <sub>(The correctness of this part is a bit harder to prove, left as an exercise :-))</sub></p>
<p>Although this has three "nested" loops, note that B and C always advance "forward", and they advance at most 2n times in total (similarly A advances at most n times), so the whole thing runs in O(n) time.</p>
<p>Code fragment, in Python (translation to C should be straightforward):</p>
<pre><code> # Assume points have been sorted already, as 0...(n-1)
A = 0; B = 1; C = 2
bA= A; bB= B; bC= C #The "best" triple of points
while True: #loop A
while True: #loop B
while area(A, B, C) <= area(A, B, (C+1)%n): #loop C
C = (C+1)%n
if area(A, B, C) <= area(A, (B+1)%n, C):
B = (B+1)%n
continue
else:
break
if area(A, B, C) > area(bA, bB, bC):
bA = A; bB = B; bC = C
A = (A+1)%n
if A==B: B = (B+1)%n
if B==C: C = (C+1)%n
if A==0: break
</code></pre>
<p>This algorithm is proved in Dobkin and Snyder, <em><a href="http://ieeexplore.ieee.org/xpls/abs%5Fall.jsp?arnumber=4567996" rel="nofollow">On a general method for maximizing and minimizing among certain geometric problems</a></em>, FOCS 1979, and the code above is a direct translation of their ALGOL-60 code. Apologies for the while-if-break constructions; it ought to be possible to transform them into simpler while loops.</p>
http://stackoverflow.com/questions/1560523/onlogn-algorithm-find-three-evenly-spaced-ones-within-binary-string/1585303#158530352Answer by ShreevatsaR for O(nlogn) Algorithm - Find three evenly spaced ones within binary stringShreevatsaR2009-10-18T16:23:33Z2009-10-19T23:12:48Z<p>Finally! Following up leads in <a href="http://stackoverflow.com/questions/1560523/onlogn-algorithm-find-three-evenly-spaced-ones-within-binary-string/1579165#1579165">sdcvvc's answer</a>, we have it: the O(n log n) algorithm for the problem! It is simple too, after you understand it. Those who guessed FFT were right.</p>
<p>The problem: we are given a binary string <code>S</code> of length <em>n</em>, and we want to find three evenly spaced 1s in it. For example, <code>S</code> may be <code>110110010</code>, where <em>n</em>=9. It has evenly spaced 1s at positions 2, 5, and 8.</p>
<ol>
<li><p>Scan <code>S</code> left to right, and make a list <code>L</code> of positions of 1. For the <code>S=110110010</code> above, we have the list L = [1, 2, 4, 5, 8]. This step is O(n). The problem is now to find an <strong>arithmetic progression of length 3</strong> in <code>L</code>, i.e. to find distinct <em>a, b, c</em> in <code>L</code> such that <em>b-a = c-b</em>, or equivalently <strong><em>a+c=2b</em></strong>. For the example above, we want to find the progression (2, 5, 8).</p></li>
<li><p>Make a <strong>polynomial</strong> <code>p</code> with terms <em>x<sup>k</sup></em> for each <em>k</em> in <code>L</code>. For the example above, we make the polynomial <em>p(x) = (x + x<sup>2</sup> + x<sup>4</sup> + x<sup>5</sup>+x<sup>8</sup>)</em>. This step is O(n).</p></li>
<li><p>Find the polynomial <code>q</code> = <em>p<sup>2</sup></em>, using the <a href="http://www.cs.iastate.edu/~cs577/handouts/polymultiply.pdf" rel="nofollow">Fast Fourier Transform</a>. For the example above, we get the polynomial <em>q(x) = x<sup>16</sup> + 2x<sup>13</sup> + 2x<sup>12</sup> + 3x<sup>10</sup> + 4x<sup>9</sup> + x<sup>8</sup> + 2x<sup>7</sup> + 4x<sup>6</sup> + 2x<sup>5</sup> + x<sup>4</sup> + 2x<sup>3</sup> + x<sup>2</sup></em>. <strong>This step is O(n log n).</strong></p></li>
<li><p>Ignore all terms except those corresponding to <em>x<sup>2k</sup></em> for some <em>k</em> in <code>L</code>. For the example above, we get the terms <em>x<sup>16</sup>, 3x<sup>10</sup>, x<sup>8</sup>, x<sup>4</sup>, x<sup>2</sup></em>. This step is O(n), if you choose to do it at all.</p></li>
</ol>
<p>Here's the crucial point: the coefficient of any <em>x<sup>2b</sup></em> for <em>b</em> in <code>L</code> is <em>precisely</em> the number of pairs <em>(a,c)</em> in <code>L</code> such that <em>a+c=2b</em>. [CLRS, Ex. 30.1-7] One such pair is <em>(b,b)</em> always (so the coefficient is at least 1), but if there exists any other pair <em>(a,c)</em>, then the coefficient is at least 3, from <em>(a,c)</em> and <em>(c,a)</em>. For the example above, we have the coefficient of <em>x<sup>10</sup></em> to be 3 precisely because of the AP (2,5,8). (These coefficients <em>x<sup>2b</sup></em> will always be odd numbers, for the reasons above. And all other coefficients in q will always be even.)</p>
<p>So then, the algorithm is to look at the coefficients of these terms <em>x<sup>2b</sup></em>, and see if any of them is greater than 1. If there is none, then there are no evenly spaced 1s. If there <em>is</em> a <em>b</em> in <code>L</code> for which the coefficient of <em>x<sup>2b</sup></em> is greater than 1, then we know that there is some pair <em>(a,c)</em> — other than <em>(b,b)</em> — for which <em>a+c=2b</em>. To find the actual pair, we simply try each <em>a</em> in <code>L</code> (the corresponding <em>c</em> would be <em>2b-a</em>) and see if there is a 1 at position <em>2b-a</em> in <code>S</code>. This step is O(n).</p>
<p>That's all, folks.</p>
<p><hr /></p>
<p>One might ask: do we need to use FFT? Many answers, such as <a href="http://stackoverflow.com/questions/1560523/onlogn-algorithm-find-three-evenly-spaced-ones-within-binary-string/1561827#1561827">beta's</a>, <a href="http://stackoverflow.com/questions/1560523/onlogn-algorithm-find-three-evenly-spaced-ones-within-binary-string/1572080#1572080">flybywire's</a>, and <a href="http://stackoverflow.com/questions/1560523/onlogn-algorithm-find-three-evenly-spaced-ones-within-binary-string/1567324#1567324">rsp's</a>, suggest that the approach that checks each pair of 1s and sees if there is a 1 at the "third" position, might work in O(n log n), based on the intuition that if there are too many 1s, we would find a triple easily, and if there are too few 1s, checking all pairs takes little time. Unfortunately, while this intuition is correct and the simple approach <em>is</em> better than O(n<sup>2</sup>), it is not significantly better. As in <a href="http://stackoverflow.com/questions/1560523/onlogn-algorithm-find-three-evenly-spaced-ones-within-binary-string/1579165#1579165">sdcvvc's answer</a>, we can take the "Cantor-like set" of strings of length <em>n=3<sup>k</sup></em>, with 1s at the positions whose ternary representation has only 0s and 2s (no 1s) in it. Such a string has <em>2<sup>k</sup> = n<sup>(log 2)/(log 3)</sup> ≈ n<sup>0.63</sup></em> ones in it and no evenly spaced 1s, so checking all pairs would be of the order of the square of the number of 1s in it: that's <em>4<sup>k</sup> ≈ n<sup>1.26</sup></em> which unfortunately is asymptotically much larger than (n log n). In fact, the worst case is even worse: Leo Moser in 1953 <a href="http://books.google.com/books?id=Cvtwu5vVZF4C&pg=PA245" rel="nofollow">constructed</a> (effectively) such strings which have <em>n<sup>1-c/√(log n)</sup></em> 1s in them but no evenly spaced 1s, which means that on such strings, the simple approach would take <em>Θ(n<sup>2-2c/√(log n)</sup>)</em> — only a <strong><em>tiny</em></strong> bit better than <em>Θ(n<sup>2</sup>)</em>, surprisingly!</p>
<p><hr /></p>
<p>About the maximum number of 1s in a string of length n with no 3 evenly spaced ones (which we saw above was at least <em>n<sup>0.63</sup></em> from the easy Cantor-like construction, and at least <em>n<sup>1-c/√(log n)</sup></em> with Moser's construction) — this is <a href="http://www.research.att.com/~njas/sequences/A003002" rel="nofollow">OEIS A003002</a>. It can also be calculated directly from <a href="http://www.research.att.com/~njas/sequences/A065825" rel="nofollow">OEIS A065825</a> as the k such that A065825(k) ≤ n < A065825(k+1). I wrote a program to find these, and it turns out that the greedy algorithm does <em>not</em> give the longest such string. For example, for <em>n</em>=9, we can get 5 1s (110100011) but the greedy gives only 4 (110110000), for <em>n</em>=26 we can get 11 1s (11001010001000010110001101) but the greedy gives only 8 (11011000011011000000000000), and for <em>n</em>=74 we can get 22 1s (11000010110001000001011010001000000000000000010001011010000010001101000011) but the greedy gives only 16 (11011000011011000000000000011011000011011000000000000000000000000000000000). They do agree at quite a few places until 50 (e.g. all of 38 to 50), though. As the OEIS references say, it seems that Jaroslaw Wroblewski is interested in this question, and he maintains a website on these <a href="http://www.math.uni.wroc.pl/~jwr/non-ave.htm" rel="nofollow">non-averaging sets</a>. The exact numbers are known only up to 194.</p>
http://stackoverflow.com/questions/1387725/what-is-dynamic-programming-algorithm-for-finding-a-hamiltonian-cycle/1387823#13878233Answer by ShreevatsaR for What is dynamic programming algorithm for finding a Hamiltonian cycle?ShreevatsaR2009-09-07T06:28:14Z2009-09-07T06:28:14Z<p>There is indeed an O(n2<sup>n</sup>) dynamic-programming algorithm for finding Hamiltonian cycles. The idea, which is a general one that can reduce many O(n!) backtracking approaches to O(n<sup>2</sup>2<sup>n</sup>) or O(n2<sup>n</sup>) (at the cost of using more memory), is to consider subproblems that are <em>sets with specified "endpoints"</em>.</p>
<p>Here, since you want a cycle, you can start at any vertex. So fix one, call it <code>x</code>. The subproblems would be: “For a given set <code>S</code> and a vertex <code>v</code> in <code>S</code>, is there a path starting at <code>x</code> and going through all the vertices of <code>S</code>, ending at <code>v</code>?” Call this, say, <code>poss[S][v]</code>.</p>
<p>As with most dynamic programming problems, once you define the subproblems the rest is obvious: Loop over all the 2<sup>n</sup> sets S of vertices in any "increasing" order, and for each v in each such S, you can compute <code>poss[S][v]</code> as:</p>
<blockquote>
<p>poss[S][v] = (there exists some <code>u</code> in S such that poss[S−{v}][u] is True and an edge <code>u->v</code> exists)</p>
</blockquote>
<p>Finally, there is a Hamiltonian cycle iff there is a vertex <code>v</code> such that an edge <code>v->x</code> exists and <code>poss[S][v]</code> is True, where <code>S</code> is the set of all vertices (other than <code>x</code>, depending on how you defined it).</p>
<p>If you want the actual Hamiltonian cycle instead of just deciding whether one exists or not, make <code>poss[S][v]</code> store the actual <code>u</code> that made it possible instead of just True or False; that way you can trace back a path at the end.</p>
http://stackoverflow.com/questions/382186/fitting-polynomials-to-data6Fitting polynomials to dataShreevatsaR2008-12-19T20:59:00Z2009-07-28T12:39:42Z
<p>Is there a way, given a set of values <code>(x,f(x))</code>, to find the polynomial of a given degree that best fits the data? </p>
<p>I know <a href="http://en.wikipedia.org/wiki/Polynomial_interpolation" rel="nofollow">polynomial interpolation</a>, which is for finding a polynomial of degree <code>n</code> given <code>n+1</code> data points, but here there are a large number of values and we want to find a low-degree polynomial (find best linear fit, best quadratic, best cubic, etc.). It might be related to <a href="http://en.wikipedia.org/wiki/Least_squares" rel="nofollow">least squares</a>...</p>
<p>More generally, I would like to know the answer when we have a multivariate function -- points like <code>(x,y,f(x,y))</code>, say -- and want to find the best polynomial (<code>p(x,y)</code>) of a given degree in the variables. (Specifically a polynomial, not splines or Fourier series.) </p>
<p>Both theory and code/libraries (preferably in Python, but any language is okay) would be useful.</p>
http://stackoverflow.com/questions/1082917/mod-of-negative-number-is-melting-my-brain/1082938#108293815Answer by ShreevatsaR for Mod of negative number is melting my brain! ShreevatsaR2009-07-04T20:35:50Z2009-07-04T20:35:50Z<p>I always use my own <code>mod</code> function, defined as</p>
<pre><code>int mod(int x, int m) {
return (x%m + m)%m;
}
</code></pre>
<p>Of course, if you're bothered about having <em>two</em> calls to the modulus operation, you could write it as</p>
<pre><code>int mod(int x, int m) {
int r = x%m;
return r<0 ? r+m : r;
}
</code></pre>
<p>or variants thereof.</p>
<p>The reason it works is that "x%m" is always in the range [-m+1, m-1]. So if at all it is negative, adding m to it will put it in the positive range without changing its value modulo m.</p>
http://stackoverflow.com/questions/982127/help-requested-whats-a-fast-way-to-bounce-between-lists-and-tuples-in-python/982306#98230612Answer by ShreevatsaR for Help requested: what's a fast way to bounce between lists and tuples in python?ShreevatsaR2009-06-11T16:55:18Z2009-06-11T17:05:41Z<p>To all those who wonder about the use of learning theory, this question is a good illustration. The right question is not about a "fast way to bounce between lists and tuples in python" — the reason for the slowness is something deeper.</p>
<p>What you're trying to solve here is known as the <a href="http://en.wikipedia.org/wiki/Assignment_problem" rel="nofollow">assignment problem</a>: given two lists of n elements each and n×n values (the value of each pair), how to assign them so that the total "value" is maximized (or equivalently, minimized). There are several algorithms for this, such as the <a href="http://en.wikipedia.org/wiki/Hungarian_algorithm" rel="nofollow">Hungarian algorithm</a> (<a href="http://www.clapper.org/software/python/munkres/" rel="nofollow">Python implementation</a>), or you could solve it using more general min-cost flow algorithms, or even cast it as a linear program and use an LP solver. Most of these would have a running time of O(n<sup>3</sup>).</p>
<p>What your algorithm above does is to try each possible way of pairing them. (The memoisation only helps to avoid recomputing answers for pairs of subsets, but you're still looking at all pairs of subsets.) This approach is at least Ω(n<sup>2</sup>2<sup>2n</sup>). For n=16, n<sup>3</sup> is 4096 and n<sup>2</sup>2<sup>2n</sup> is 1099511627776. There are constant factors in each algorithm of course, but see the difference? :-) (The approach in the question is still better than the naive O(n!), which would be much worse.) Use one of the O(n^3) algorithms, and I predict it should run in time for up to n=10000 or so, instead of just up to n=15. </p>
<p>"Premature optimization is the root of all evil", as Knuth said, but so is delayed/overdue optimization: you should first carefully consider an appropriate algorithm before implementing it, not pick a bad one and then wonder what parts of it are slow. :-) Even badly implementing a good algorithm in Python would be orders of magnitude faster than fixing all the "slow?" parts of the code above (e.g., by rewriting in C).</p>
http://stackoverflow.com/questions/970884/floating-annotations-with-html-css-javascript-whatever9"Floating" annotations with HTML/CSS/JavaScript/whateverShreevatsaR2009-06-09T15:44:16Z2009-06-10T21:19:02Z
<p>I have a text document with some annotations, and I would like to make them appear near the text they accompany, on a webpage.</p>
<p>That is, I want to convert something like this:</p>
<pre><code> The Houdan hen was never drawn into the
cult of Sredni Vashtar. Conradin had
long ago settled that she was an
Anabaptist. He did not pretend to have [23]
the remotest knowledge as to what an
Anabaptist was, but he privately hoped
that it was dashing and not very
respectable.
</code></pre>
<p>appropriately, so that in a browser, the [23] is displayed somewhere on the same line as the words "pretend to have" (preferably in the left or right 'margin' on the page), whatever the font size or wherever the line breaks might be. Is this possible, with any mix of CSS/JavaScript/pre-processing, whatever?</p>
<p>See <a href="http://www.gutenberg.org/files/21769/21769-h/21769-h.htm#2H%5F4%5F0036" rel="nofollow">(the left margin on) this page</a> for an example of what I want to do: have page numbers accompany the text. Except that the text isn't just verse that is all in <code><pre></code>, so I can't exactly copy what they do. (I guess it is possible to move all the annotations to the top/bottom of paragraphs and have them appear there, but I'd really not prefer that.)</p>
<p>I realise the question might be vague, but I'm open to suggestions.</p>
<p>[<strong>Note</strong>: I don't need anything to "float" in the technical (CSS/whatever) sense; I just imagined that having these "annotations" beside text mid-paragraph requires something of a floating nature. I'm open to suggestions for a better question title too :)]</p>
<p><strong>Update</strong>: Also, does your method work if the "annotations" are longer than just a number, e.g. small paragraphs themselves or images?</p>
http://stackoverflow.com/questions/365371/css-two-columns3CSS: two columnsShreevatsaR2008-12-13T16:12:48Z2009-06-10T18:51:33Z
<p>I can't figure out how to achieve the following layout with CSS (probably because I don't actually know CSS).</p>
<p>I have a bunch of divs like this:</p>
<pre><code><div class="right"> <p>1</p> </div>
<div class="left"> <p>2</p> </div>
<div class="left"> <p>3</p> </div>
<div class="left"> <p>4</p> </div>
<div class="right"> <p>5</p> </div>
<div class="right"> <p>6</p> </div>
</code></pre>
<p>(not the real contents)</p>
<p>Now I want the layout to look like two equal columns of divs, with the "right" ones on the right, and the "left" ones on the left, thus:</p>
<pre><code>2 1
3 5
4 6
</code></pre>
<p>[<strong>Edit: In a previous version of this question I had textareas inside the divs, and the divs all had different names like "one" and "xyz".</strong>]
I tried something like</p>
<pre><code>div.right { width:50%; float:right; clear:right; }
div.left { width:50%; float:left; clear:left;}
</code></pre>
<p>but it doesn't quite work: It produces something like:</p>
<pre><code>2 1
3
4 5
6
</code></pre>
<p>(without the "clear"s, it blithely produces </p>
<pre><code>2 1
3 4
6 5
</code></pre>
<p>which is not what is wanted).</p>
<p>It is apparent that it can be made to work if the divs are ordered differently, but I'd like not to do that (because these divs are generated dynamically if the browser has Javascript, and I don't want to change the actual order that is displayed in the absence of Javascript, for semantic reasons). Is it still possible to achieve the layout I want?</p>
<p>[For what it's worth, I'm willing to have it not work on IE or older versions of other browsers, so if there is a solution that works only on standards-compliant browsers, that's okay :-)]</p>
http://stackoverflow.com/questions/967805/completely-lucid-tabs-and-spaces-in-emacs/967839#9678394Answer by ShreevatsaR for completely lucid tabs and spaces in emacs?ShreevatsaR2009-06-09T02:01:11Z2009-06-09T02:01:11Z<p>Perhaps <code>(global-set-key (kbd "RET") 'newline-and-indent)</code> is what you want?
(Or <code>reindent-then-newline-and-indent</code> if that's available, or you could just hit <code>C-j</code> instead of the Enter key.)</p>
http://stackoverflow.com/questions/933497/create-your-own-md5-collisions/937871#9378710Answer by ShreevatsaR for Create your own MD5 collisionsShreevatsaR2009-06-02T04:13:38Z2009-06-05T22:12:15Z<p>It's hard to do it with just text files, AFAIK. You can get <em>some</em> collisions, but having them also be from just [a-zA-Z] is not easy (yet).</p>
<p>On the other hand, if you just want two "meaningful"-looking files with the same hash, you can do it with something like, say, PostScript: have different binary blobs causing the collision, and use a conditional expression to display different output accordingly.</p>
<p>See e.g. <a href="http://ipsc2009.ksp.sk/contests/ipsc2006/real/problems/h.php" rel="nofollow">this problem</a> (the H2 part) and <a href="http://ipsc2009.ksp.sk/contests/ipsc2006/real/solutions/h.php" rel="nofollow">solution</a>. For example, <a href="http://ipsc2009.ksp.sk/contests/ipsc2006/real/solutions/h1.ps" rel="nofollow">this PS file</a> and <a href="http://ipsc2009.ksp.sk/contests/ipsc2006/real/solutions/h2.ps" rel="nofollow">this one</a> have the same MD5sum.</p>
http://stackoverflow.com/questions/948341/dynamic-programming-number-of-ways-to-get-at-least-n-bubble-sort-swaps/951287#9512873Answer by ShreevatsaR for Dynamic Programming: Number of ways to get at least N bubble sort swaps?ShreevatsaR2009-06-04T15:29:25Z2009-06-04T16:20:13Z<p>Ok, here's a solution. Let's assume that all elements of the array are distinct, and further, without loss of generality, we can assume that they are {1,...,n}. (We can always relabel the elements so that this is the case, and nothing gets affected.)</p>
<p>First, we can observe that the number of swaps performed by bubble sort is the number of <strong>inversions</strong> in the permutation a[1..n]: the number of pairs (i,j) such that i<j but a[i]>a[j]. (This is not too hard to prove.)</p>
<p>So we want the number of permutations of {1,...,n} with at most k inversions. Let c(n,k) denote this number. Any permutation of {1,...n} can be thought of as taking a permutation of {1,...,n-1} and inserting {n} into it somewhere. If you insert it at position i, it creates exactly n-i new inversions. So the old permutation must have had at most k-(n-i) inversions. This gives:</p>
<pre><code>c(n,k) = sum_{i s.t. n-i≤k} c(n-1, k-(n-i))
= sum_{i=max(1,n-k) to n} c(n-1, k-n+i)
</code></pre>
<p>And the base case:</p>
<pre><code>c(1,0) = 1 (or better, c(0,0)=1)
</code></pre>
<p>(Note that k is at most n*(n-1)/2 < n<sup>2</sup>.)</p>
<p><hr /></p>
<p><strong>Update</strong>: The above takes O(n^2k) — so upto O(n^4) — time to compute c(n,k), because each of the nk c(n,k)'s takes O(n) time to compute given the earlier ones. We can improve by a factor of n by making the recurrence shorter, so that each c(n,k) can be computed in O(1) time given earlier ones. Write j for k-n+i so that</p>
<pre><code>c(n,k) = sum_{j=max(k-n+1,0) to k} c(n-1, j)
</code></pre>
<p>Note that most of the sum is the same for c(n,k) and c(n,k-1). Specifically,</p>
<pre><code>When k≤n-1, c(n,k) = c(n,k-1) + c(n-1,k)
When k≥n, c(n,k) = c(n,k-1) + c(n-1,k) - c(n-1,k-n)
</code></pre>
<p><hr /></p>
<p>Updated program: (I wrote a lazy memoised version; you can make it slightly more efficient by making it bottom-up, the usual way with dynamic programming.)</p>
<pre><code>ct = {(0,0): 1}
def c(n,k):
if k<0: return 0
k = min(k, n*(n-1)/2) #Or we could directly return n! if k>=n*(n-1)/2
if (n,k) in ct: return ct[(n,k)]
ct[(n,k)] = c(n,k-1) + c(n-1,k) - c(n-1,k-n)
return ct[(n,k)]
if __name__ == "__main__":
n = input("Size of array: ")
k = input("Bubble-sort distance at most: ")
print c(n,k)
</code></pre>
http://stackoverflow.com/questions/930675/functional-paragraphs/930765#9307653Answer by ShreevatsaR for Functional paragraphsShreevatsaR2009-05-30T22:24:18Z2009-06-01T21:03:54Z<p>I'm only a beginning Haskell programmer (and the little Haskell I learnt was 5 years ago), but for a start, I'd write the natural translation of your function, with the accumulator ("the current paragraph") being passed around (I've added types, just for clarity):</p>
<pre><code>type Line = String
type Para = [Line]
-- Takes a list of lines, and returns a list of paragraphs
paragraphs :: [Line] -> [Para]
paragraphs ls = paragraphs2 ls []
-- Helper function: takes a list of lines, and the "current paragraph"
paragraphs2 :: [Line] -> Para -> [Para]
paragraphs2 [] para = [para]
paragraphs2 ("":ls) para = para : (paragraphs2 ls [])
paragraphs2 (l:ls) para = paragraphs2 ls (para++[l])
</code></pre>
<p>This works:</p>
<pre><code>*Main> paragraphs ["Line 1", "Line 2", "", "Line 3", "Line 4"]
[["Line 1","Line 2"],["Line 3","Line 4"]]
</code></pre>
<p><hr /></p>
<p>So that's a solution. But then, Haskell experience suggests that there are almost always library functions for doing things like this :) One related function is called <a href="http://www.zvon.org/other/haskell/Outputlist/groupBy_f.html" rel="nofollow">groupBy</a>, and it almost works:</p>
<pre><code>paragraphs3 :: [Line] -> [Para]
paragraphs3 ls = groupBy (\x y -> y /= "") ls
*Main> paragraphs3 ["Line 1", "Line 2", "", "Line 3", "Line 4"]
[["Line 1","Line 2"],["","Line 3","Line 4"]]
</code></pre>
<p>Oops. What we really need is a "splitBy", and <a href="http://www.google.com/search?q=haskell%20splitBy" rel="nofollow">it's not in the libraries</a>, but we can filter out the bad ones ourselves:</p>
<pre><code>paragraphs4 :: [Line] -> [Para]
paragraphs4 ls = map (filter (/= "")) (groupBy (\x y -> y /= "") ls)
</code></pre>
<p>or, if you want to be cool, you can get rid of the argument and do it the pointless way:</p>
<pre><code>paragraphs5 = map (filter (/= "")) . groupBy (\x y -> y /= "")
</code></pre>
<p>I'm sure there is an even shorter way. :-) </p>
<p><strong>Edit</strong>: <a href="http://stackoverflow.com/users/20713/ephemient">ephemient</a> points out that <code>(not . null)</code> is cleaner than <code>(/= "")</code>. So we can write</p>
<pre><code>paragraphs = map (filter $ not . null) . groupBy (const $ not . null)
</code></pre>
<p>The repeated <code>(not . null)</code> is a strong indication that we really should abstract this out into a function, and this is what the <a href="http://byorgey.wordpress.com/2008/12/21/datalistsplit/" rel="nofollow">Data.List.Split module</a> does, as pointed out in the <a href="#931773" rel="nofollow">answer below</a>.</p>
http://stackoverflow.com/questions/927272/what-is-the-best-functional-programming-language-for-experienced-oo-developers/927326#92732617Answer by ShreevatsaR for What is the best Functional Programming Language for Experienced OO Developers?ShreevatsaR2009-05-29T18:01:47Z2009-05-29T18:15:36Z<p>Seems to me that if you're an experienced OO programmer, you should learn a functional programming language that does <em>not</em> let you keep on programming in the OO style.</p>
<p>My recommendation is Haskell (although some OO is possible in it too, it's not the typical idiom.) Haskell has mature compilers (ghc) and good testing tools (Quickcheck, etc).</p>
http://stackoverflow.com/questions/925922/algorithm-to-determine-indices-i-j-of-array-a-containing-all-the-elements-of-ano/926285#9262854Answer by ShreevatsaR for Algorithm to determine indices i..j of array A containing all the elements of another array BShreevatsaR2009-05-29T14:30:49Z2009-05-29T14:30:49Z<h2>Complexity</h2>
<h3>Time: O((m+n)log m)</h3>
<h3>Space: O(m)</h3>
<p>The following is provably optimal up to a logarithmic factor. (I believe the log factor cannot be got rid of, and so it's optimal.)</p>
<p>Variant 1 is just a special case of variant 2 with all the multiplicities being 1, after removing duplicates from B. So it's enough to handle the latter variant; if you want variant 1, just remove duplicates in <code>O(m log m)</code> time. In the following, let <code>m</code> denote the number of distinct elements in B. We assume <code>m < n</code>, because otherwise we can just return <code>-1</code>, in constant time.</p>
<p>For each index <code>i</code> in A, we will find the smallest index <code>s[i]</code> such that <code>A[i..s[i]]</code> contains <code>B[1..m]</code>, with the right multiplicities. The crucial observation is that <em><code>s[i]</code> is non-decreasing</em>, and this is what allows us to do it in amortised linear time.</p>
<p>Start with <code>i=j=1</code>. We will keep a tuple <code>(c[1], c[2], ... c[m])</code> of the number of times each element of B occurs, in the current window <code>A[i..j]</code>. We will also keep a set <code>S</code> of indices (a subset of <code>1..m</code>) for which the count is "right" (i.e., <code>k</code> for which <code>c[k]=1</code> in variant 1, or <code>c[k] = <the right number></code> in variant 2).</p>
<p>So, for <code>i=1</code>, starting with <code>j=1</code>, increment each <code>c[A[j]]</code> (if <code>A[j]</code> was an element of B), check if <code>c[A[j]]</code> is now "right", and add or remove <code>j</code> from <code>S</code> accordingly. Stop when <code>S</code> has size <code>m</code>. You've now found <code>s[1]</code>, in at most <code>O(n log m)</code> time. (There are <code>O(n)</code> <code>j</code>'s, and each set operation took <code>O(log m)</code> time.)</p>
<p>Now for computing successive <code>s[i]</code>s, do the following. Increment <code>i</code>, decrement <code>c[A[i]]</code>, update <code>S</code> accordingly, and, if necessary, increment <code>j</code> until <code>S</code> has size <code>m</code> again. That gives you <code>s[i]</code> for each <code>i</code>. At the end, report the <code>(i,s[i])</code> for which <code>s[i]-i</code> was smallest.</p>
<p>Note that although it seems that you might be performing up to <code>O(n)</code> steps (incrementing <code>j</code>) for each <code>i</code>, the second pointer <code>j</code> only moves to the right: so the total number of times you can increment <code>j</code> is at most <code>n</code>. (This is <a href="http://en.wikipedia.org/wiki/Amortized_analysis" rel="nofollow">amortised analysis</a>.) Each time you increment <code>j</code>, you might perform a set operation that takes <code>O(log m)</code> time, so the total time is <code>O(n log m)</code>. The space required was for keeping the tuple of counts, the set of elements of B, the set S, and some constant number of other variables, so <code>O(m)</code> in all.</p>
<p>There is an obvious <code>O(m+n)</code> <em>lower bound</em>, because you need to examine all the elements. So the only question is whether we can prove the <code>log</code> factor is necessary; I believe it is.</p>
http://stackoverflow.com/questions/915985/in-emacs-how-to-line-up-equals-signs-in-a-series-of-initialization-statements/916053#9160538Answer by ShreevatsaR for In emacs, how to line up equals signs in a series of initialization statements?ShreevatsaR2009-05-27T14:35:12Z2009-05-27T14:35:12Z<p>Use <code>M-x align-regexp</code> (here, <code>M-x align-regexp RET = RET</code>). You can also add an "alignment rule" to the variable <code>align-rules-list</code>, so that in future <code>M-x align</code> will do it. See the documentation (<code>C-h f align</code>) for details.</p>
http://stackoverflow.com/questions/873927/can-anybody-explain-the-contrapositive/873932#8739328Answer by ShreevatsaR for Can anybody explain the contrapositiveShreevatsaR2009-05-17T05:01:56Z2009-05-17T05:01:56Z<p>Yes. </p>
<p>The contrapositive of "If P then Q" is "If not Q, then not P". </p>
<p>So the contrapositive of "If A is 0 or B is 0, then A<code>*</code>B is 0" is "If A<code>*</code>B is not 0, then not(A is 0 or B is 0)". </p>
<p>And "not(A is 0 or B is 0)" is "A is not 0 <strong>and</strong> B is not 0", so the contrapositive should be "If A<code>*</code>B is not 0, then A is not 0 and B is not 0". Just what you expect :-)</p>
http://stackoverflow.com/questions/873126/finding-the-path-with-the-maximum-minimal-weight/873171#8731712Answer by ShreevatsaR for Finding the path with the maximum minimal weightShreevatsaR2009-05-16T19:57:41Z2009-05-16T19:57:41Z<p>You could also use the "binary search on the answer" paradigm. That is, do a binary search on the weights, testing for each weight <code>w</code> whether you can find a path in the graph using only edges of weight greater than <code>w</code>.</p>
<p>The largest <code>w</code> for which you can (found through binary search) gives the answer. Note that you only need to check if a path exists, so just an O(|E|) breadth-first/depth-first search, not a shortest-path. So it's <code>O(|E|*log(max W))</code> in all, comparable to the Dijkstra/Kruskal/Prim's <code>O(|E|log |V|)</code> (and I can't immediately see a proof of those, too).</p>
http://stackoverflow.com/questions/859253/why-does-this-simple-shuffle-algorithm-produce-biased-results-what-is-a-simple/860365#8603653Answer by ShreevatsaR for why does this simple shuffle algorithm produce biased results? what is a simple reason?ShreevatsaR2009-05-13T20:52:10Z2009-05-16T04:10:25Z<p>From your comments on the other answers, it seems that you are looking not just for an explanation of why the distribution is not <strong>the</strong> uniform distribution (for which the divisibility answer is a simple one) but also an "intuitive" explanation of why it is actually <strong>far from uniform</strong>.</p>
<p>Here's one way of looking at it. Suppose you start with the initial array <code>[1, 2, ..., n]</code> (where n might be 3, or 52, or whatever) and apply one of the two algorithms. If all permutations are uniformly likely, then the probability that 1 remains in the first position should be <code>1/n</code>. And indeed, in the second (correct) algorithm, it <em>is</em> <code>1/n</code>, as 1 stays in its place if and only if it is not swapped the first time, i.e. iff the initial call to <code>rand(0,n-1)</code> returns 0. <br/>
However, in the first (wrong) algorithm, 1 remains untouched only if it is <em>neither</em> swapped the first time <em>nor</em> any other time — i.e., only if the first <code>rand</code> returns 0 and <em>none</em> of the other <code>rand</code>s returns 0, the probability of which is (1/n) * (1-1/n)^(n-1) ≈ 1/(ne) ≈ 0.37/n, not 1/n.</p>
<p><strong>And that's the "intuitive" explanation: in your first algorithm, earlier items are much more likely to be swapped out of place than later items, so the permutations you get are skewed towards patterns in which the early items are <em>not</em> in their original places.</strong></p>
<p>(It's a bit more subtle than that, e.g. 1 can get swapped into a later position and still end up getting swapped back into place through a complicated series of swaps, but those probabilities are relatively less significant.)</p>
http://stackoverflow.com/questions/827706/calculating-ex-without-using-any-functions/827725#82772524Answer by ShreevatsaR for calculating e^x without using any functionsShreevatsaR2009-05-06T02:10:24Z2009-05-06T02:45:16Z<p>Both x^n and n! quickly grow large with n (exponentially and superexponentially respectively) and will soon overflow any data type you use. On the other hand, x^n/n! goes down (eventually) and you can stop when it's small. That is, use the fact that x^(n+1)/(n+1)! = (x^n/n!) * (x/(n+1)). Like this, say:</p>
<pre><code>term = 1.0;
for(n=1; term >= 1.0E-10; n++)
{
eValue += term;
term = term * x / n;
}
</code></pre>
<p>(Code typed directly into this box, but I expect it should work.)</p>
<p>Edit: Note that the term x^n/n! is, for large x, increasing for a while and then decreasing. For x=709, it goes up to ~1e+306 before decreasing to 0, which is just at the limits of what <code>double</code> can handle (<code>double</code>'s range is ~1e308 and <code>term*x</code> pushes it over), but <code>long double</code> works fine. Of course, your final <em>result</em> e<sup>x</sup> is larger than any of the terms, so assuming you're using a data type big enough to accommodate the result, you'll be fine.</p>
<p>(For x=709, you can get away with using just <code>double</code> if you use <code>term = term / n * x</code>, but it doesn't work for 710.)</p>
http://stackoverflow.com/questions/715808/generate-exponential-distribution-of-bucket-sizes/717254#7172543Answer by ShreevatsaR for Generate exponential distribution of bucket sizesShreevatsaR2009-04-04T15:23:01Z2009-04-04T16:06:39Z<p>The exponential distribution has support on the entire positive reals; your distribution has support over the positive integers (it is a discrete probability distribution), and it is called the <a href="http://planetmath.org/?op=getobj&from=objects&id=3456" rel="nofollow">geometric distribution</a>. <sup>(<a href="http://en.wikipedia.org/wiki/Geometric%5Fdistribution" rel="nofollow">W</a>)</sup> [The probabilities are usually written in terms of a parameter that is 1−(your p), but that's a trivial detail.]</p>
<p>Actually, your choice of picking the geometric distribution is a good one when you know just the mean: </p>
<blockquote>
<p>Among all discrete probability distributions supported on {1, 2, 3, ... } with given expected value μ, the geometric distribution X with parameter p = 1/μ is the one with the largest entropy.</p>
</blockquote>
<p>Your problem is interesting (how to incrementally fill buckets given the distribution of their sizes), and I don't know of the best answer, but assuming there are sufficiently many items, the following stupid algorithm will work:</p>
<pre><code>While there are items left:
Pick a "bucket size" k according to the desired distribution
/* E.g., for the geometric distribution with mean 1.5,
you could toss a coin with bias 0.667 until you get a head,
then you'll get k=1 for 66.7% of the time, k=2 for 22.2%, k=3 for 7.4% etc.,
with k being 1.5 on average (in expectation) */
Put the next k items into one (new) bucket.
</code></pre>
<p>Note that you don't need to know the number of items. Assuming the number is sufficiently large, issues (such as variance in the distributions, and "leftovers" at the end) will not matter much.</p>
http://stackoverflow.com/questions/675840/typesetting-new-functions-in-latex/675867#6758676Answer by ShreevatsaR for Typesetting New Functions in LaTeXShreevatsaR2009-03-24T01:32:46Z2009-03-24T01:32:46Z<p><code>\DeclareMathOperator</code> (or, if you're using some weird distribution of LaTeX that doesn't have the AMS packages, <code>\mathop{\mathrm{Erfi}}</code>)</p>
<p>See the always-useful UK TeX FAQ, specifically <a href="http://www.tex.ac.uk/cgi-bin/texfaq2html?label=newfunction" rel="nofollow">Defining a new log-like function in LaTeX</a>.</p>
http://stackoverflow.com/questions/643975/solving-the-water-jug-problem/651506#6515061Answer by ShreevatsaR for Solving the water jug problemShreevatsaR2009-03-16T18:00:06Z2009-03-16T18:00:06Z<p>An amazing and amusing approach (for 3 jugs) is through <em><a href="http://en.wikipedia.org/wiki/Barycentric_coordinates_(mathematics)" rel="nofollow">barycentric coordinates</a></em> (really!), as described at the always brilliant website Cut-the-Knot: <a href="http://www.cut-the-knot.org/triangle/glasses.shtml" rel="nofollow">Barycentric coordinates: A Curious Application</a>.</p>
http://stackoverflow.com/questions/645498/compiler-construction-vs-functional-programming-which-is-tougher-to-learn/645513#6455137Answer by ShreevatsaR for compiler construction vs functional programming, which is tougher to learn?ShreevatsaR2009-03-14T06:21:31Z2009-03-14T06:21:31Z<p>Compiler construction <em>in</em> functional programming. Seriously, one of the most prominent uses of Haskell is writing compilers, and I've heard people who've written compilers in other languages and then Haskell say they'll never write a compiler in an imperative programming language again.</p>
<p><a href="http://en.wikibooks.org/wiki/Write_Yourself_a_Scheme_in_48_Hours" rel="nofollow">Write Yourself a Scheme in 48 hours</a> can serve as a Haskell tutorial that teaches you both Haskell and some rudiments of writing a compiler (and Scheme, for that matter).</p>
http://stackoverflow.com/questions/2366/can-anyone-explain-monads/47997#479977Answer by ShreevatsaR for Can anyone explain Monads?ShreevatsaR2008-09-07T01:02:03Z2009-03-12T23:43:45Z<p><em>(See also the answers at <strong><a href="http://stackoverflow.com/questions/44965/what-is-a-monad">What is a monad?</a></strong>)</em></p>
<p>A good motivation to Monads is sigfpe(Dan Piponi)'s <a href="http://sigfpe.blogspot.com/2006/08/you-could-have-invented-monads-and.html" rel="nofollow">You Could Have Invented Monads! (And Maybe You Already Have)</a>. There are <a href="http://www.haskell.org/haskellwiki/Monad_tutorials_timeline" rel="nofollow">a LOT of other monad tutorials</a>, many of which misguidedly try to explain monads in "simple terms" using various analogies: this is the <a href="http://byorgey.wordpress.com/2009/01/12/abstraction-intuition-and-the-monad-tutorial-fallacy/" rel="nofollow">monad tutorial fallacy</a>; avoid them.</p>
<p>As DR MacIver says in <a href="http://www.drmaciver.com/2008/02/tell-us-why-your-language-sucks/" rel="nofollow">Tell us why your language sucks</a>: <blockquote>
<P>
<strong>So, things I hate about Haskell:</strong>
</p>
<p>
Let’s start with the obvious. Monad tutorials. No, not monads. Specifically the tutorials. They’re endless, overblown and dear god are they tedious. Further, I’ve never seen any convincing evidence that they actually help. Read the class definition, write some code, get over the scary name. </p></blockquote></p>
<p>You say you understand the Maybe monad? Good, you're on your way. Just start using other monads and sooner or later you'll understand what monads are in general.</p>
<p>[If you are mathematically oriented, you might want to ignore the dozens of tutorials and learn the definition, or follow <a href="http://lambda-the-ultimate.org/node/2455" rel="nofollow">lectures in category theory</a> :)
The main part of the definition is that a Monad M involves a "type constructor" that defines for each existing type "T" a new type "M T", and some ways for going back and forth between "regular" types and "M" types.]</p>
<p>Also, surprisingly enough, one of the best introductions to monads is actually one of the early academic papers introducing monads, Philip Wadler's <a href="http://homepages.inf.ed.ac.uk/wadler/papers/marktoberdorf/baastad.pdf" rel="nofollow">Monads for functional programming</a>. It actually has practical, <em>non-trivial</em> motivating examples, unlike many of the artificial tutorials out there.</p>
http://stackoverflow.com/questions/306249/how-were-the-first-np-complete-problems-shown-to-be-np-complete/306279#30627921Answer by ShreevatsaR for how were the first NP-complete problems shown to be NP-complete?ShreevatsaR2008-11-20T18:08:41Z2009-03-01T16:50:47Z<p><a href="http://en.wikipedia.org/wiki/Cook%27s_theorem" rel="nofollow">Cook's Theorem</a></p>
<p>The class NP can be defined as the class of problems decidable by a nondeterministic Turing machine in polynomial time. This theorem shows that <strong>SAT is NP-complete</strong> by encoding the operation of any nondeterministic Turing machine by a boolean formula, in such a way that the machine accepts if and only if that formula is SATisfiable.</p>
<p>Historically speaking, the notion of NP-completeness was introduced in Richard Karp's seminal paper (<i><a href="http://en.wikipedia.org/wiki/Karp%27s_21_NP-complete_problems" rel="nofollow">Reducibility Among Combinatorial Problems</a></i>), where he defined NP-completeness, used Cook's theorem, and in one big shot, proved 21 problems NP-complete.</p>
http://stackoverflow.com/questions/1907400/how-to-generate-a-document-like-this-in-latexComment by ShreevatsaR on How to generate a document like this in LatexShreevatsaR2009-12-15T13:43:12Z2009-12-15T13:43:12ZYes, "having a light colored background on a page, having a big header" are possible.http://stackoverflow.com/questions/1904141/code-golf-does-a-binary-number-lie-within-the-cantor-setComment by ShreevatsaR on Code Golf: Does a binary number lie within the Cantor set?ShreevatsaR2009-12-15T01:37:05Z2009-12-15T01:37:05Z@Jason: 3/4 <i>is</i> in the Cantor set. Also, the program with unbounded input means that if you determine something is not in the Cantor set — e.g. anything beginning with 0.100... in binary, as it is in [1/2,5/8] and therefore in (1/3, 2/3) — you terminate and say "no", else you keep scanning the input.http://stackoverflow.com/questions/1904141/code-golf-does-a-binary-number-lie-within-the-cantor-set/1904662#1904662Comment by ShreevatsaR on Code Golf: Does a binary number lie within the Cantor set?ShreevatsaR2009-12-15T01:31:40Z2009-12-15T01:31:40Z0.11 (binary) = 3/4 is 0.20202020... in ternary, and is therefore <i>in</i> the Cantor set. (The second round removes numbers between 7/9 and 8/9, not between 6/9 and 7/9 as you said.) See e.g. the fluffy articles at <a href="http://www.jstor.org/stable/2687224" rel="nofollow">jstor.org/stable/2687224</a> , <a href="http://www.jstor.org/stable/1558975" rel="nofollow">jstor.org/stable/1558975</a> and <a href="http://www.jstor.org/stable/4146907" rel="nofollow">jstor.org/stable/4146907</a> (The latter two are available from <a href="http://www.csupomona.edu/~imihaila/" rel="nofollow">csupomona.edu/~imihaila</a> )http://stackoverflow.com/questions/895371/bubble-sort-homeworkComment by ShreevatsaR on Bubble Sort HomeworkShreevatsaR2009-12-12T22:28:54Z2009-12-12T22:28:54Z@Bill: Yes, I used "natural" in the sense of "well-motivated": something the students can come with by themselves (with a bit of nudging, or from analogy with sorting physical objects). I have nothing against slow/inefficient O(n^2) sorting algorithms being the first ones taught, just against the misconception that bubble sort is easiest to understand (not borne out by evidence!). For example, try asking students about the loop terminating conditions in bubble sort: it is subtler and harder to reason about than the other O(n^2) sorts, and seems to be surprisingly hard to code <i>correctly</i>.http://stackoverflow.com/questions/895371/bubble-sort-homeworkComment by ShreevatsaR on Bubble Sort HomeworkShreevatsaR2009-12-12T21:36:13Z2009-12-12T21:36:13ZAnd some students <i>do</i> arrive at the equivalent of mergesort or quicksort. It may well be "perhaps the most obvious way to sort by exchanges", but sorting by exchanges is not natural. :-) See also "Bubble sort: an archaeological algorithmic analysis" by Owen Astrachan (<a href="http://prophet.cs.duke.edu/~ola/papers/bubble.pdf" rel="nofollow">prophet.cs.duke.edu/~ola/papers/bubble.pdf</a> / <a href="http://www.cs.duke.edu/~ola/bubble/bubble.html" rel="nofollow">cs.duke.edu/~ola/bubble/bubble.html</a> ). There's no good reason to teach bubble sort *first*: "The bubble sort algorithm is not very useful in practice, since it runs more slowly than insertion sort and selection sort, **yet is more complicated to program.**"http://stackoverflow.com/questions/895371/bubble-sort-homeworkComment by ShreevatsaR on Bubble Sort HomeworkShreevatsaR2009-12-12T21:29:09Z2009-12-12T21:29:09Z@Bill: I understand bubble sort perfectly well (and so do most students eventually); my complaint is that it is not a natural algorithm, though the code is short. Try this experiment: give students some 40 cards and ask them to sort them. They'll start haphazardly at first, but soon they'll either: (i) pick out the smallest one each time and add it (selection sort / minsort), or (ii) put each successive card in its "proper" position (insertion sort). I've <i>never</i> seen anyone sort in several passes of swapping only adjacent elements. Maintaining an invariant inductively does not come naturally.http://stackoverflow.com/questions/1894365/haskell-how-to-type-castComment by ShreevatsaR on Haskell: How to type castShreevatsaR2009-12-12T19:09:49Z2009-12-12T19:09:49ZThe idea of casting an arbitrary type into another does not make much sense in Haskell (or any language for that matter). It makes sense for some specific pairs of types (integer to string, integer to float, etc., for which Haskell has appropriate functions <code>show</code>, <code>fromIntegral</code> etc.) or for types between which you have defined conversion functions, in which case you use them.http://stackoverflow.com/questions/87657/what-are-some-good-programming-challenge-websites/1210521#1210521Comment by ShreevatsaR on What are some good programming challenge websites?ShreevatsaR2009-12-12T15:10:52Z2009-12-12T15:10:52ZThat's pretty decent, actually. Good work!http://stackoverflow.com/questions/1869305/guide-to-switch-from-visual-studio-to-emacs-on-windows/1869318#1869318Comment by ShreevatsaR on Guide to switch from Visual Studio to Emacs on windows?ShreevatsaR2009-12-08T19:53:08Z2009-12-08T19:53:08ZHow?...........http://stackoverflow.com/questions/1859254/the-perverse-hangman-problemComment by ShreevatsaR on The perverse hangman problemShreevatsaR2009-12-07T11:01:17Z2009-12-07T11:01:17ZIt's certainly a real question, and the algorithm (evaluating game trees) is a standard one of interest to programmers. The only thing wrong with the question is that it is homework (without the asker having done their part).http://stackoverflow.com/questions/1830005/inferred-type-appears-to-detect-an-infinite-loop-but-whats-really-happening/1836244#1836244Comment by ShreevatsaR on Inferred type appears to detect an infinite loop, but what's really happening?ShreevatsaR2009-12-05T16:23:55Z2009-12-05T16:23:55ZThat's interesting… if such a thing were implemented, it would be possible to <i>really</i> detect the bug at compile-time. Intuitively it seems it should be true, that no such function can exist, but there's always the counterexample which always returns an empty list: <code>f xs = []</code>. (Since <code>[]</code> is of type <code>[a]</code> for any <code>a</code> in <code>Ord</code>.) Perhaps it can be proven that this is the only possible function?http://stackoverflow.com/questions/1847131/how-many-digits-in-this-base/1847172#1847172Comment by ShreevatsaR on How many digits in this base ?ShreevatsaR2009-12-04T16:15:21Z2009-12-04T16:15:21ZPython automatically switches to arbitrary-precision arithmetic; <code>log</code> will always be correct. But <code>floor</code> and <code>ceil</code> are not: on my computer at least, printing out digits(n) for the first 20 powers of 10 shows mistakes. (Two 3s in the first version and two 15s in the second.)
For the C version: why the trickery in the for loop with comma-separated statements and an empty body? You could move one of them out and improve clarity. Or, if clarity is not the goal, it would be shorter to write: "while(n/=b) d++;" :-)http://stackoverflow.com/questions/1847310/count-number-of-points-inside-a-circle-fast/1847340#1847340Comment by ShreevatsaR on Count number of points inside a circle fastShreevatsaR2009-12-04T14:42:59Z2009-12-04T14:42:59ZKD-trees are often useful, but I don't see how they can help in this case. Could you explain?http://stackoverflow.com/questions/1830607/complexity-of-finding-all-simple-paths-using-depth-first-searchComment by ShreevatsaR on Complexity of finding all simple paths using depth first search?ShreevatsaR2009-12-04T00:51:44Z2009-12-04T00:51:44ZGood luck then. The answer is that it is exponential in the depth, and a more specific analysis isn't really interesting. In what school/college was this homework given, may I ask? :-)http://stackoverflow.com/questions/1830607/complexity-of-finding-all-simple-paths-using-depth-first-searchComment by ShreevatsaR on Complexity of finding all simple paths using depth first search?ShreevatsaR2009-12-03T03:04:14Z2009-12-03T03:04:14ZYes. The question is, do you only want a list of numbers (and, say, one path for each) or an enormous list of paths? For example, in a complete graph, given two vertices, you can reach one from the other in either 1, 2, 3, ... or n-2 steps. It's easy to produce that list of numbers (and an example path or two for each of them, say). But just to produce all possible ways the two are connected within n/10 degrees (say) necessarily requires time exponential in n. You should look carefully at which one your homework asks for.