User Svante - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T19:50:49Zhttp://stackoverflow.com/feeds/user/31615http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/994905/is-there-ever-a-need-for-a-do-while-loop/1931055#19310550Answer by Svante for Is there ever a need for a "do {...} while ( )" loop?Svante2009-12-18T22:29:45Z2009-12-18T22:29:45Z<p>The following common idiom seems very straightforward to me:</p>
<pre><code>do {
preliminary_work();
value = get_value();
} while (not_valid(value));
</code></pre>
<p>The rewrite to avoid <code>do</code> seems to be:</p>
<pre><code>value = make_invalid_value();
while (not_valid(value)) {
preliminary_work();
value = get_value();
}
</code></pre>
<p>That first line is used to make sure that the test <em>always evaluates to true</em> the first time. In other words, the test is always superfluous the first time. If this superfluous test wasn't there, one could also omit the initial assignment. This code gives the impression that it fights itself.</p>
<p>In cases such like these, the <code>do</code> construct is a very useful option.</p>
http://stackoverflow.com/questions/1922068/is-writing-good-code-an-asset-or-a-liability-maintenance-contracts/1922176#19221762Answer by Svante for Is writing good code an asset or a liability? (maintenance contracts)Svante2009-12-17T14:32:25Z2009-12-17T14:32:25Z<p>I think that this is the "broken window fallacy" in somewhat hidden form.</p>
http://stackoverflow.com/questions/1916218/find-the-longest-common-starting-substring-in-a-set-of-strings/1916492#19164922Answer by Svante for Find the longest common starting substring in a set of stringsSvante2009-12-16T18:02:20Z2009-12-16T20:49:48Z<p>You just need to traverse all strings until they differ, then take the substring up to this point.</p>
<p>Pseudocode:</p>
<pre><code>loop for i upfrom 0
while all strings[i] are equal
finally return substring[0..i]
</code></pre>
<p>Common Lisp:</p>
<pre><code>(defun longest-common-starting-substring (&rest strings)
(loop for i from 0 below (apply #'min (mapcar #'length strings))
while (apply #'char=
(mapcar (lambda (string) (aref string i))
strings))
finally (return (subseq (first strings) 0 i))))
</code></pre>
http://stackoverflow.com/questions/1911170/how-do-i-generate-a-tournament-schedule-in-ruby/1913495#19134953Answer by Svante for How do I generate a tournament schedule in Ruby?Svante2009-12-16T09:42:29Z2009-12-16T17:10:49Z<p>You seem want a round-robin schedule. The principle is easy:</p>
<p>If you start with this setup (teams in the upper row playing against the corresponding lower team):</p>
<pre><code>A B C D
H G F E
</code></pre>
<p>you set one team as fixed (e.g., A) and rotate the rest (e.g., clockwise):</p>
<pre><code>A H B C A G H B A F G H A E F G A D E F A C D E
G F E D F E D C E D C B D C B H C B H G B H G F
</code></pre>
<p>Voilà, 7 rounds, and every team plays each other team.</p>
<p>Edit: I changed the enumeration order in this example to reflect your example output, but this only gets the opponents of <code>A</code> right.</p>
http://stackoverflow.com/questions/1913601/find-word-before-second-comma-with-regex/1913710#19137103Answer by Svante for find word before second comma with regexSvante2009-12-16T10:22:49Z2009-12-16T10:22:49Z<pre><code>^[^,]*,[^,]*\b(\w+)\b,
</code></pre>
<p><code>^</code> -- The beginning of the string/line<br>
<code>[^ ]</code> -- Any character not being ...<br>
<code>,</code> -- ... a comma<br>
<code>*</code> -- Zero or more of the preceding<br>
<code>,</code> -- A comma<br>
<code>[^,]*</code> -- Again, any character not being a comma, repeated zero or more times<br>
<code>\b</code> -- A word boundary (zero width)<br>
<code>( )</code> -- A capturing group<br>
<code>\w</code> -- Any word character<br>
<code>+</code> -- One or more of the preceding<br>
<code>\b</code> -- A word boundary (zero width)<br>
<code>,</code> -- A comma </p>
http://stackoverflow.com/questions/1913090/regex-to-allow-text-some-special-characters-and-keep-below-a-specified-length/1913269#19132692Answer by Svante for Regex to allow text, some special characters and keep below a specified lengthSvante2009-12-16T08:56:34Z2009-12-16T09:01:59Z<pre><code>^[\w\s.,:;!?€¥£¢$-]{0,2048}$
</code></pre>
<p><code>^</code> -- Beginning of string/line<br>
<code>[]</code> -- A character class<br>
<code>\w</code> -- A word character<br>
<code>\s</code> -- A space character<br>
<code>.,:;!?€¥£¢$-</code> -- Punctuation and special characters<br>
<code>{}</code> -- Number of repeats (min,max)<br>
<code>$</code> -- End of string/line</p>
http://stackoverflow.com/questions/1909087/back-behavior-in-rich-web-apps-true-user-assumption/1909446#19094460Answer by Svante for "Back" behavior in rich web apps, true user assumption?Svante2009-12-15T18:34:18Z2009-12-15T18:34:18Z<p>A "rich web application" has to be very careful about what the user would perceive as a "new page" and what would rather be taken as some action <em>on</em> a page. This perception of what a "page" is should then be reflected by the behaviour of the browsing history ("back" and "forward" buttons are just a way to interact with the browsing history).</p>
<p>Many "rich web applications" would better be simple HTML pages. In such applications, it is often obvious what a "page" is.</p>
<p>Other applications would better use a real client-server model: it should be possible to download the client just once, not for each new session. Such applications often do not have an obvious "page" model, so each user has his own idea what the "back" button should do. In such a situation, it would be good not even to present a "web-browser-like interface", in order not to raise false expectations. I believe that technologies like Java Web Start are a good base for such applications.</p>
http://stackoverflow.com/questions/1906631/c-how-to-write-regular-expression/1906692#19066923Answer by Svante for C# how to write Regular ExpressionSvante2009-12-15T11:03:09Z2009-12-15T11:03:09Z<pre><code>\/[^\/\s]+
</code></pre>
<p><code>\/</code> -- A slash (escaped)<br>
<code> [^ ]</code> -- A character class not (<code>^</code>) containing...<br>
<code> \/</code> -- ... slashes ...<br>
<code> \s</code> -- ... or whitespace<br>
<code> +</code> -- One or more of these </p>
http://stackoverflow.com/questions/1902115/regular-expression-in-php-how-to-create-a-pattern-for-tables-in-html/1902160#19021602Answer by Svante for Regular Expression in PHP: How to create a pattern for tables in htmlSvante2009-12-14T17:04:30Z2009-12-14T17:04:30Z<p>Please have a look at <a href="http://stackoverflow.com/questions/773340/can-you-provide-an-example-of-parsing-html-with-your-favorite-parser/774853#774853">this answer</a>. It describes the usage of an HTML parser in PHP, which is what you want to do.</p>
http://stackoverflow.com/questions/1882541/whats-up-with-stdout-in-gambit-c-scheme/1882795#18827953Answer by Svante for What's up with stdout in Gambit-C Scheme?Svante2009-12-10T17:54:55Z2009-12-10T17:54:55Z<p>I am not familiar with <code>pp</code>, but you seem to want <code>pretty-print</code>:</p>
<pre><code>$ gsi -e "(pretty-print 'hello?)" > test
$ cat test
hello?
$
</code></pre>
http://stackoverflow.com/questions/1877318/another-lisp-function-refinement/1879628#18796284Answer by Svante for Another Lisp function refinementSvante2009-12-10T08:56:41Z2009-12-10T08:56:41Z<p>Your lambda list is OK. The problem is the base case: <code>(zerop end)</code> should be modified so that you also get a sensible result if called like <code>(min-max myvec :start 5 :end 3)</code>.</p>
<p>The next critique is about these two lines:</p>
<pre><code> (multiple-value-bind (x y) (max-min vec :start (1+ start) :end end)
(let* ((maxx x) (minn y))
;; ...
</code></pre>
<p>If you want the results of the recursive call to be named <code>maxx</code> and <code>minn</code>, why don't you name them like that directly?</p>
<pre><code> (multiple-value-bind (maxx minn) (max-min vec :start (1+ start) :end end)
;; ...
</code></pre>
<p>By the way, you can call them <code>max</code> and <code>min</code> (there are separate namespaces for variables and functions), or <code>max-of-rest</code> and <code>min-of-rest</code> (to be more descriptive).</p>
http://stackoverflow.com/questions/1879255/traditional-for-loop-vs-iterator-in-java/1879399#18793993Answer by Svante for traditional for loop vs Iterator in JavaSvante2009-12-10T08:16:21Z2009-12-10T08:25:52Z<p>The first reason to use an iterator is <em>obvious correctness</em>. If you use a manual index, there may be very innocuous off-by-one errors that you can only see if you look very closely: did you start at 1 or at 0? Did you finish at <code>length - 1</code>? Did you use <code><</code> or <code><=</code>? If you use an iterator, it is much easier to see that it is really iterating the whole array. "Say what you do, do what you say."</p>
<p>The second reason is uniform access to different data structures. An array can be accessed efficiently through an index, but a linked list is best traversed by remembering the last element accessed (otherwise you get a "<a href="http://en.wikipedia.org/wiki/Schlemiel%5Fthe%5Fpainter%27s%5FAlgorithm" rel="nofollow">Shlemiel the painter</a>"). A hashmap is even more complicated. By providing a uniform interface from these and other data structures (e.g., you can also do tree traversals), you get obvious correctness again. The traversing logic has to be implemented only once, and the code using it can concisely "say what it does, and do what it says."</p>
http://stackoverflow.com/questions/1876851/why-do-perl-control-statements-require-braces/1877287#18772871Answer by Svante for Why do Perl control statements require braces?Svante2009-12-09T22:11:43Z2009-12-09T22:11:43Z<p>"<em>Okay, so normally, you need braces around blocks, but not if the block is only one statement long, except, of course, if your statement would be ambiguous in a way that would be ruled by precedence rules not like you want if you omitted the braces -- in this case, you could also imagine the use of parentheses, but that would be inconsistent, because it is a block after all -- this is of course dependent on the respective precedence of the involved operators. In any case, you don't need to put semicolons after closing braces -- it is even wrong if you end an if statement that is followed by an else statement -- except that you absolutely must put a semicolon at the end of a header file in C++ (or was it C?).</em>"</p>
<p>Seriously, I am glad for every explicitness and uniformity in code.</p>
http://stackoverflow.com/questions/1870895/is-there-a-common-name-for-a-function-that-takes-a-list-of-lists-and-returns-a-si/1875098#18750980Answer by Svante for Is there a common name for a function that takes a list of lists and returns a single list containing the contents of those lists?Svante2009-12-09T16:33:20Z2009-12-09T16:33:20Z<p>In Common Lisp, you can apply APPEND, or CONCATENATE with the right type parameter. The result of APPEND shares substructure with the argument lists; CONCATENATE always copies, and can also be applied to non-list sequences.</p>
http://stackoverflow.com/questions/1874418/how-to-make-a-list-of-arrays-not-their-symbols-in-lisp/1874545#18745453Answer by Svante for How to make a list of arrays, not their symbols, in Lisp?Svante2009-12-09T15:15:51Z2009-12-09T15:25:01Z<p>MAPCAR takes a function as first argument. <code>'(lambda (x) (aref x 0))</code> is the same as <code>(quote (lambda (x) (aref x 0)))</code>, and this is <em>not</em> a function. You want to make it a function with <code>(function (lambda (x) (aref x 0)))</code>, which can be written shorter as <code>#'(lambda (x) (aref x 0))</code>, or even (because of a standard macro) <code>(lambda (x) (aref x 0))</code>.</p>
<p><code>'(p1 p2)</code> is the same as <code>(quote (p1 p2))</code>. QUOTE means that the arguments are <em>not evaluated</em>, so the names "P1" and "P2" stand for themselves, not for their values. The type error you get is that the symbol <code>'P1</code> is not an array, it just has an array as value. In order to get a list of the values, use LIST: <code>(list p1 p2)</code>.</p>
<p>In conclusion: <code>(mapcar #'(lambda (x) (aref x 0)) (list p1 p2))</code></p>
<p>EDIT: For subtracting vectors, you should look into the <a href="http://www.lispworks.com/documentation/lw50/CLHS/Body/f%5Fmap.htm" rel="nofollow">MAP</a> function; note that you can provide multiple sequences.</p>
http://stackoverflow.com/questions/1859798/how-can-i-convert-hexadecimal-to-decimal-numbers-in-calc-of-emacs/1859918#18599187Answer by Svante for How can I convert hexadecimal to decimal numbers in calc of Emacs? Svante2009-12-07T13:17:10Z2009-12-08T13:38:03Z<p>You can enter any number in the format <code><base>#<number></code>. Example: <code>16#FF</code> is immediately converted to <code>255</code>.</p>
<p>For the reverse, you need to set the output display mode. In this example, <code>d</code> <code>r</code> <code>16</code> <kbd>RET</kbd> sets the display to base 16. Set it to base 10 to get the default behaviour again.</p>
<p>By the way, you can also Read The Fine Manual<sup>TM</sup>: <a href="http://www.delorie.com/gnu/docs/calc/calc%5Ftoc.html" rel="nofollow">GNU Emacs Calc Manual</a>.</p>
http://stackoverflow.com/questions/1685339/verify-knuth-shuffle-algorithm-is-as-unbiased-as-possible/1866964#18669641Answer by Svante for Verify Knuth shuffle algorithm is as unbiased as possibleSvante2009-12-08T13:26:03Z2009-12-08T13:26:03Z<p>If I see that right, your <code>random::get (max)</code> doesn't include <code>max</code>.</p>
<p>This line:</p>
<pre><code>draw_t push_index = random::get( pull_index );
</code></pre>
<p>then produces a "classical" off-by-one error, as your <code>pull_index</code> and <code>push_index</code> erroneously can never be the same. This produces a subtle bias that you can never have an item where it was before the shuffle. In an extreme example, two-item lists under this "shuffle" would always be reversed.</p>
http://stackoverflow.com/questions/1864267/how-can-i-sort-a-perl-list-in-an-arbitrary-order/1865589#18655892Answer by Svante for How can I sort a Perl list in an arbitrary order?Svante2009-12-08T08:47:19Z2009-12-08T08:47:19Z<p>You can just go over the master list and push any element that occurs in the unsorted list onto the result list, while removing it from the unsorted list. If your unsorted list is short (from your example, I reckon about 5 elements), this should be faster and smaller than building hash tables each time (you said you couldn't do it once beforehand).</p>
<p>An optimization might be to make a trie from the unsorted list, but whether this is better is dependent on the size of each list.</p>
http://stackoverflow.com/questions/1859505/lisp-difference-between-cons-a-cons-b-c-and-cons-a-b-c/1860113#18601136Answer by Svante for Lisp difference between (cons 'a (cons 'b 'c)) and (cons 'a '(b.c))Svante2009-12-07T13:51:43Z2009-12-07T13:51:43Z<p>Spaces are used to separate list tokens. <code>A.B</code> is a single token. <code>(A.B)</code> is a list with a single element. <code>(A . B)</code> is a cons cell with <code>A</code> as car and <code>B</code> as cdr.</p>
<p>A cons cell is a pair of "things" (objects). In your case, these things are symbols, and they are named <code>A</code>, <code>B</code>, etc.. The printed representation of such a cell is <code>(A . B)</code>, for example. This is called "dot notation". The first element is called "car", the second "cdr".</p>
<p>The function <code>cons</code> creates such a cell. <code>(cons 'a 'b)</code> thus produces the cell <code>(A . B)</code>. <em>Note that names are always upcased internally</em>.</p>
<p>This is most likely what your teacher wanted, so <code>((A . B) . C)</code> is the correct output, and your code the right answer. This is a cell where the car points to another cell, and the cdr contains <code>C</code>. That other cell is a cell where the car contains <code>A</code> and the cdr <code>B</code>.</p>
<p>By the way, a <em>list</em> is a linear chain of such cons cells, such that the car always holds a value and the cdr points to the rest of the list. The last cdr points nowhere (which is called NIL in Lisp). In dot notation, a list is e.g. <code>(A . (B . (C . NIL)))</code>. Since lists are important, they can be written shorter like this: <code>(A B C)</code>. If the last CDR has a value instead of NIL, it is shown in dot notation, e.g. <code>(A . (B . (C . D))))</code> can be written as <code>(A B C . D)</code>.</p>
http://stackoverflow.com/questions/1856744/regular-expression-to-verify-that-string-contains/1856805#18568050Answer by Svante for Regular expression to verify that string contains { }Svante2009-12-06T22:15:13Z2009-12-06T22:15:13Z<p>There is exactly one opening brace and exactly one closing brace in the string, and the closing brace follows the opening brace:</p>
<pre><code>^[^\{\}]\{[^\{\}]\}[^\{\}]$
</code></pre>
<p>There any number of braces in the string, but they are not nested (there is never another opening brace before the previous one has been closed), and they are always balanced:</p>
<pre><code>^[^\{\}](\{[^\{\}]\})*[^\{\}]$
</code></pre>
<p>Nesting cannot be generally solved by regular expressions.</p>
http://stackoverflow.com/questions/1848029/why-not-port-linux-kernel-to-common-lisp/1848273#184827310Answer by Svante for Why not port Linux kernel to Common Lisp?Svante2009-12-04T16:55:35Z2009-12-04T17:31:35Z<p>There are projects that aim to implement "Lisp on the bare metal", e.g. <a href="http://common-lisp.net/project/movitz/" rel="nofollow">Movitz</a> (there were also the famous <a href="http://en.wikipedia.org/wiki/Lisp%5Fmachine" rel="nofollow">Lisp machines</a>). Having Lisp in such a central role would also mean significant changes to how the system is designed, e.g. having a garbage collecting memory system, different library interaction etc..</p>
<p>So, you wouldn't port any OS to Lisp, you would write a new Lisp OS. I would be very excited if that becomes usable.</p>
http://stackoverflow.com/questions/1848283/assigning-null-to-objects-in-every-application-after-their-use/1848391#18483911Answer by Svante for Assigning "null" to objects in every application after their useSvante2009-12-04T17:14:55Z2009-12-04T17:14:55Z<p>Assigning is not done to objects, it is done to variables, and it means that this variable then holds a reference to some object. Assigning NULL to a variable is not a way to destroy an object, it just clears one reference. If the variable you are clearing will leave its scope afterwards anyway, assigning NULL is just useless noise, because that happens on leaving scope in any case.</p>
http://stackoverflow.com/questions/1847926/exchange-two-nodes-in-linkedlist/1847980#18479802Answer by Svante for Exchange two nodes in LinkedListSvante2009-12-04T16:11:28Z2009-12-04T16:11:28Z<p>I don't know the implementation, but if your nodes have simply one value (in addition to the next and previous links), you can just swap the values.</p>
http://stackoverflow.com/questions/1847633/net-library-to-identify-pitches/1847716#18477167Answer by Svante for .NET Library to Identify PitchesSvante2009-12-04T15:31:16Z2009-12-04T15:31:16Z<p>You would usually do a Fourier transform on the input, then identify the most prominent frequency. This might not be the whole story though, since any nonsynthetic sound source produces a number of frequencies (they make up what is described as "tone colour"). Anyway, it can be done efficiently; there are real-time autotuners (you didn't believe that pop starlet could really sing, did you?).</p>
http://stackoverflow.com/questions/1847131/how-many-digits-in-this-base/1847505#18475050Answer by Svante for How many digits in this base ?Svante2009-12-04T15:01:37Z2009-12-04T15:01:37Z<p>I think that the only way to get the rounding error eliminated without producing other errors is to use or implement integer logarithms.</p>
http://stackoverflow.com/questions/1834143/towers-of-hanoi-like-problem/1846699#18466990Answer by Svante for Towers of Hanoi-like problemSvante2009-12-04T12:35:29Z2009-12-04T12:35:29Z<p>Lacking further insight, I would do this as a graph search.</p>
<p>Each game state is an array of stacks. Note that for equality, the
second and third stack are exchangable, so the following should be
considered the same:</p>
<pre><code>((1 3 5)
(2 4)
(7 9)
(0))
((1 3 5)
(7 9)
(2 4)
(0))
</code></pre>
<p>The graph is a directed acyclic graph. The vertices are game states,
and the edges moves.</p>
<p>The algorithm is to create this graph starting from the given first
state, but prune all states that cannot lead to the goal state, and
unite all states that are the same (for this, you need to go
breadth-first).</p>
<p>States that cannot lead to the goal states are those states</p>
<ul>
<li>where the last stack doesn't only contain the lowest numbers in ascending order, or</li>
<li>where one of the transitional stacks is not in descending order.</li>
</ul>
<p>There may be further restrictions. In particular, I am not sure
whether there isn't a way to determine the outcome from the order in
the first stack directly (which would make this algorithm
superfluous).</p>
http://stackoverflow.com/questions/1846058/unix-awk-command-regex-problem/1846162#18461620Answer by Svante for Unix awk command regex problemSvante2009-12-04T10:40:21Z2009-12-04T10:40:21Z<p>You could use <code>cut</code> instead of <code>awk</code>:</p>
<pre><code>$ data_display | grep '^[0-9]' | cut -f 1 -d ' '
</code></pre>
http://stackoverflow.com/questions/1442674/how-to-determine-whether-a-binary-tree-is-complete/1845408#18454080Answer by Svante for How to determine whether a binary tree is complete?Svante2009-12-04T07:29:52Z2009-12-04T07:29:52Z<p>You can do it recursively by comparing the heights of each node's children. There may be at most one node where the left child has a height exactly one greater than the right child; all other nodes must be perfectly balanced.</p>
http://stackoverflow.com/questions/1835669/regex-match-not-in-tag/1835692#18356921Answer by Svante for regex - match not in tagSvante2009-12-02T20:46:46Z2009-12-02T20:46:46Z<p>It is really simple: extract only the text with an HTML parser, then use regular expressions on that.</p>
http://stackoverflow.com/questions/254733/how-to-cope-with-disk-full-scenarios5How to cope with "disk full" scenarios?Svante2008-10-31T19:54:52Z2009-12-02T17:37:53Z
<p>The vast majority of applications does not handle "disk full" scenarios properly. </p>
<p>Example: an installer doesn't see that the disk is full, ignores all errors, and finally happily announces "installation complete!", or an email program is unaware that the message it has just downloaded could not be saved, and tells the server to delete the original.</p>
<p>What techniques are there to handle this situation gracefully? Do you use them? Do you test them?</p>
http://stackoverflow.com/questions/1926835/how-to-write-an-interpreterComment by Svante on How to write an interpreter?Svante2009-12-18T08:01:21Z2009-12-18T08:01:21ZI think that it is much easier to write a Ruby interpreter in Lisp than vice versa.http://stackoverflow.com/questions/1922068/is-writing-good-code-an-asset-or-a-liability-maintenance-contracts/1922119#1922119Comment by Svante on Is writing good code an asset or a liability? (maintenance contracts)Svante2009-12-17T14:30:04Z2009-12-17T14:30:04ZDo you realize that (apart from the meaning-distorting misspelling) your first sentence contradicts the rest of your post, through an apparently unintended double negation?http://stackoverflow.com/questions/783716/footnote-spacing-in-latex/1921451#1921451Comment by Svante on footnote spacing in LaTeXSvante2009-12-17T12:48:55Z2009-12-17T12:48:55ZThis is not an answer. Please delete.http://stackoverflow.com/questions/783716/footnote-spacing-in-latex/1700076#1700076Comment by Svante on footnote spacing in LaTeXSvante2009-12-17T12:48:22Z2009-12-17T12:48:22ZThis is not an answer but a new question. Please, post it as a new question, then delete this.http://stackoverflow.com/questions/1916218/find-the-longest-common-starting-substring-in-a-set-of-strings/1917076#1917076Comment by Svante on Find the longest common starting substring in a set of stringsSvante2009-12-16T20:47:10Z2009-12-16T20:47:10ZI will not condemn recursion, but you are building a new string for concatenating each character of the result. Otherwise, the approach is ok.http://stackoverflow.com/questions/1916218/find-the-longest-common-starting-substring-in-a-set-of-strings/1917343#1917343Comment by Svante on Find the longest common starting substring in a set of stringsSvante2009-12-16T20:30:25Z2009-12-16T20:30:25ZThe optimal solution has complexity O(l*n), where l is the length of the longest common starting substring and n the number of strings.http://stackoverflow.com/questions/1916218/find-the-longest-common-starting-substring-in-a-set-of-strings/1916480#1916480Comment by Svante on Find the longest common starting substring in a set of stringsSvante2009-12-16T20:26:26Z2009-12-16T20:26:26ZThis traverses each string once for each character not in the result. Not very efficient.http://stackoverflow.com/questions/1916218/find-the-longest-common-starting-substring-in-a-set-of-strings/1916926#1916926Comment by Svante on Find the longest common starting substring in a set of stringsSvante2009-12-16T20:13:45Z2009-12-16T20:13:45ZThis traverses each string once for every character not in the result; e.g., a string that is the result plus 10 characters gets traversed 10 times. This is not very efficient.http://stackoverflow.com/questions/1916218/find-the-longest-common-starting-substring-in-a-set-of-strings/1916398#1916398Comment by Svante on Find the longest common starting substring in a set of stringsSvante2009-12-16T19:52:05Z2009-12-16T19:52:05ZYou don't need regular expressions, because all you need is linear string comparison. This implementation is particularly inefficient because you build a new regex in each iteration.http://stackoverflow.com/questions/1916218/find-the-longest-common-starting-substring-in-a-set-of-strings/1916601#1916601Comment by Svante on Find the longest common starting substring in a set of stringsSvante2009-12-16T19:48:48Z2009-12-16T19:48:48ZThis is inefficient because you likely make comparisons that are superfluous when a later string further shortens the result.http://stackoverflow.com/questions/1916218/find-the-longest-common-starting-substring-in-a-set-of-strings/1916416#1916416Comment by Svante on Find the longest common starting substring in a set of stringsSvante2009-12-16T19:03:20Z2009-12-16T19:03:20ZYou don't need a trie. As soon as any branch would occur, you're done anyway.http://stackoverflow.com/questions/1913900/java-regexp-overmatches/1914122#1914122Comment by Svante on Java regexp overmatchesSvante2009-12-16T11:38:06Z2009-12-16T11:38:06Z"(\A|[^<])<([^<]|\Z)" to also get the occurences at the start and end of the string.http://stackoverflow.com/questions/192793/what-is-your-favorite-programmer-t-shirt/193340#193340Comment by Svante on What is your favorite "programmer" t-shirt?Svante2009-12-16T10:32:07Z2009-12-16T10:32:07ZSorry, but the stuff on stackoverflow has mostly crappy spelling and grammar when it first arrives. There are just hordes of obsessive-compulsive correcters making the site readable.http://stackoverflow.com/questions/1913601/find-word-before-second-comma-with-regex/1913623#1913623Comment by Svante on find word before second comma with regexSvante2009-12-16T10:24:24Z2009-12-16T10:24:24Z<code>\w</code> is a word character, not a word boundary. <code>[^,]</code> is any character that is not a comma, not a word character.http://stackoverflow.com/questions/1910744/more-efficient-way-to-count-intersectionsComment by Svante on More efficient way to count intersections?Svante2009-12-16T09:58:36Z2009-12-16T09:58:36ZDo I see that right that intersections are only defined as two coordinate tuples being the same, and not as lines between coordinates intersecting?