User Rafał Dowgird - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T09:44:32Z http://stackoverflow.com/feeds/user/12166 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1787252/is-there-a-on-algorithm-to-build-a-max-heap/1789173#1789173 1 Answer by Rafał Dowgird for Is there a O(n) algorithm to build a max-heap? Rafał Dowgird 2009-11-24T10:25:34Z 2009-11-24T10:25:34Z <p>Yes there is: <a href="http://en.wikipedia.org/wiki/Binary%5Fheap#Building%5Fa%5Fheap" rel="nofollow">Building a heap</a>.</p> http://stackoverflow.com/questions/1777461/best-case-running-time-to-solve-an-np-complete-problem/1784548#1784548 1 Answer by Rafał Dowgird for Best-case Running-time to solve an NP-Complete problem? Rafał Dowgird 2009-11-23T17:06:29Z 2009-11-23T17:06:29Z <blockquote> <p>[...] with dynamic programming it can be done in O(n^2 * 2^n). Is there any perhaps "easier" NP-Complete problem that has a better running time?</p> </blockquote> <p>Sort of. You can get rid of any polynomial factor by creating an artificial problem that encodes the same solution in a polynomially larger input. As long as the input is only polynomially larger, the resulting problem is still NP-complete. Since the complexity is by definition the function that maps input size to running time, if the input size grows the function gets into lower O classes.</p> <p>So, the same algorithm running on TSP with the input padded with n^2 useless bits, will have complexity O(1 * 2^sqrt(n)).</p> http://stackoverflow.com/questions/1781860/use-of-facade-pattern/1782024#1782024 4 Answer by Rafał Dowgird for Use of Facade Pattern Rafał Dowgird 2009-11-23T09:29:39Z 2009-11-23T09:29:39Z <p>Facade deals with interface, not implementation. Its purpose is to hide internal complexity behind a single interface that appears simple on the outside. In the example from your question, the facade hides four classes (Order, OrderLine, Address, BasketItem) behind a single method. </p> <p>Template method deals with implementation. Its purpose is to extract the common algorithm from several ones that differ only in a 'fill in the blanks' way. The template method in the superclass implements the common algorithm and each subclass 'fills in the blanks' in its own specific way.</p> <blockquote> <p>So why don't the author use Template Pattern here?</p> </blockquote> <p>It would make sense to make <code>placeOrder</code> a template method if there were several similar versions of the operation. Maybe a few methods like <code>placePhoneOrder</code>, <code>placeInternetOrder</code>, <code>placeManuallyEnteredOrder</code> could be refactored into a single template <code>placeOrder</code> with some subclasses implementing only the {phone,internet,manual}-specific differences.</p> http://stackoverflow.com/questions/1779358/conflicting-types-error-in-c/1779418#1779418 0 Answer by Rafał Dowgird for conflicting types error in C Rafał Dowgird 2009-11-22T17:53:40Z 2009-11-22T17:59:51Z <p>Well, it compiles on <a href="http://codepad.org" rel="nofollow">http://codepad.org</a> (after removing the <code>getch()</code>, which is irrelevant). Maybe your compiler complains about using memcpy on non-restricted pointers? </p> <p>In <code>swap()</code> <code>p1</code> and <code>p2</code> are not guaranteed not to be aliases. This is an actual bug waiting to happen - calling swap on <code>&amp;a[i]</code> and <code>&amp;a[j]</code> might blow up <code>memcpy</code> when <code>i==j</code>. Either use <code>memmove</code> (which is guaranteed not to blow up on overlapped areas) or declare the pointers <code>restricted</code>.</p> http://stackoverflow.com/questions/1737289/dynamic-nested-loops-level/1745098#1745098 0 Answer by Rafał Dowgird for Dynamic nested loops level Rafał Dowgird 2009-11-16T21:53:54Z 2009-11-16T21:53:54Z <p>You can use recursion or you can explicitly store each loop's state and manage the states in a single loop.</p> <p>In this case it means storing an array of counters. Each execution of the main loop advances the innermost counter and all outer counters whose inner neighbours 'carry over'. The highest counter acts as a guard.</p> <pre><code>void printloop(int maxloop, int maxvalue) { unsigned int counters[maxloop+1]; // C99 for the win memset(counters, 0, sizeof(counters)); while(!counters[maxloop]) { int i; char *sep=""; for(i=maxloop; i--&gt;0;) { printf("%s%d",sep,counters[i]); sep=","; }; printf("\n"); for(i=0; counters[i]==maxvalue; i++) // inner loops that are at maxval restart at zero counters[i]=0; ++counters[i]; // the innermost loop that isn't yet at maxval, advances by 1 } } </code></pre> http://stackoverflow.com/questions/1708510/python-list-vs-tuple-when-to-use-each/1708935#1708935 0 Answer by Rafał Dowgird for python: list vs tuple, when to use each? Rafał Dowgird 2009-11-10T15:46:15Z 2009-11-10T15:46:15Z <blockquote> <p>But if I am the one who designs the API and gets to choose the data types, then what are the guidelines?</p> </blockquote> <p>For input parameters it's best to accept the most generic interface that does what you need. It is seldom just a tuple or list - more often it's sequence, sliceable or even iterable. Python's duck typing usually gets it for free, unless you explicitly check input types. Don't do that unless absolutely unavoidable.</p> <p>For the data that you produce (output parameters) just return what's most convenient for you, e.g. return whatever datatype you keep or whatever your helper function returns. </p> <p>One thing to keep in mind is to avoid returning a list (or any other mutable) that's part of your state, e.g.</p> <pre><code>class ThingsKeeper def __init__(self): self.__things = [] def things(self): return self.__things #outside objects can now modify your state def safer(self): return self.__things[:] #it's copy-on-write, shouldn't hurt performance </code></pre> http://stackoverflow.com/questions/1700200/how-to-calculate-the-3d-line-segment-of-two-rectangles/1706442#1706442 1 Answer by Rafał Dowgird for How to calculate the 3D line segment of two rectangles? Rafał Dowgird 2009-11-10T08:43:36Z 2009-11-10T08:49:46Z <p>Based on Aaron's answer, which I believe contains an error:</p> <ol> <li>Turn the two rectangles into two planes (just take three of the four vertices and build the plane from that).</li> <li>Intersect the two planes to get an infinite line (*).</li> <li>Intersect this line with the bounding lines of the first rectangle.</li> <li>Intersect result of 3 with the bounding lines of the second rectangle.</li> </ol> <p>If you omit step 4, then you get a false intersection when first rectangle intersects the second rectangle's plane but not the rectangle itself. Example:</p> <pre><code>rectangle1=[(-1,-1,0),(-1,1,0),(1,1,0),(1,-1,0)] rectangle2=[(0,50,50),(0,50,40),(0,40,40),(0,40,50)] </code></pre> <p>Plane1 is z=0, plane2 is x=0, their intersection is the y axis, which intersects rectangle1 at 1 and -1. The rectangles do not intersect, though.</p> <p>(*) If the planes overlap, the rectangles' intersection can still be a line, but it's a rather nasty case.</p> http://stackoverflow.com/questions/1606610/finding-the-minimum-set-of-properties-that-describe-a-referent-in-a-set-of-entiti/1609298#1609298 1 Answer by Rafał Dowgird for Finding the minimum set of properties that describe a referent in a set of entities Rafał Dowgird 2009-10-22T18:59:07Z 2009-10-23T11:02:18Z <p>You are looking for a <a href="http://en.wikipedia.org/wiki/Set%5Fcover%5Fproblem" rel="nofollow">minimum set cover</a> of the set E\{r} with negations (complements) of those properties that r belongs to (properties can be treated as subsets of E).</p> <p>Since these sets can be any sets, this is NP-hard.</p> <p>More precisely:</p> <p>Having a set cover instance (<code>U</code>,<code>S</code>) where <code>U</code> is the set that you need to cover and <code>S</code>={<code>s1</code>,<code>s2</code>, ..., <code>sn</code>} is the family of covering sets you can construct an instance of your problem so that its solution gives a set cover in the original problem:</p> <p><code>E</code> = <code>U</code> \union {<code>r</code>}, where <code>r</code> is the referent and <code>r</code> does not belong to <code>U</code>. The set of properties <code>P</code>={<code>p1</code>,<code>p2</code>, ..., <code>pn</code>} is constructed from <code>S</code> so that for each <code>e</code> in <code>U</code> and each <code>i</code> such that 1&lt;=<code>i</code>&lt;=n we have <code>pi</code>(<code>e</code>) iff <code>e</code> is not in <code>si</code>. Moreover each property is true for <code>r</code>. In other words properties are complements of the original sets when restricted to <code>U</code>, and <code>r</code> has all properties.</p> <p>Now it is clear that each set of properties that selects <code>r</code> is a set cover in the original problem - if <code>r</code> is selected by a set <code>S*</code> of properties, then all other elements (that means all those in <code>U</code>) fail at least one property in <code>S*</code>, so every element of <code>U</code> belongs to at least one original set (from construction of properties as complements of the sets). That means that <code>U</code> is union of those sets from which properties in <code>S*</code> were constructed.</p> <p>The converse is also true - a set cover in <code>U</code> translates to an <code>r</code>-selecting set in <code>E</code>.</p> <p>The above reduction is obviously polynomial, so the problem is NP-hard. </p> http://stackoverflow.com/questions/1609303/why-is-determining-if-a-function-is-pure-difficult/1609368#1609368 5 Answer by Rafał Dowgird for Why is determining if a function is pure difficult? Rafał Dowgird 2009-10-22T19:13:48Z 2009-10-22T19:13:48Z <p>It is particularly hard in Python. Since <code>anObject.aFunc</code> can be changed arbitrarily at runtime, you cannot determine at compile time which function will <code>anObject.aFunc()</code> call or even if it will be a function at all.</p> http://stackoverflow.com/questions/1544055/rossover-operation-in-genetic-algorithm-for-tsp/1545907#1545907 1 Answer by Rafał Dowgird for Сrossover operation in Genetic algorithm for TSP Rafał Dowgird 2009-10-09T20:30:40Z 2009-10-09T20:30:40Z <p>You should check "Genetic Algorithm Solution of the TSP Avoiding Special Crossover and Mutation" by Gokturk Ucoluk. PDF <a href="http://www.ceng.metu.edu.tr/~ucoluk/research/publications/tspnew.pdf" rel="nofollow">here</a>. It gives an overview of the special crossover operators for permutations and proposes a clever representation of permutations that works well with standard crossover (i.e. crossing over two permutations always produces two permutations).</p> http://stackoverflow.com/questions/1519462/maximum-bipartite-graph-1-n-matching/1527663#1527663 0 Answer by Rafał Dowgird for Maximum bipartite graph (1,n) "matching" Rafał Dowgird 2009-10-06T19:40:43Z 2009-10-09T07:38:02Z <p>This is NP-hard, reduction from maximum independent set problem. For any graph <code>G</code> you can construct (in polynomial time) an instance of your problem such that:</p> <ul> <li>Vertices in A represent vertices of <code>G</code></li> <li>Each vertex of A is connected to exactly n vertices from B</li> <li>Any two vertices of A have a common neighbour in B if and only if they are connected in <code>G</code>. For this to be always possible, pick n=Δ(G). </li> </ul> <p>Now the maximum 'matching' in the instance maps back to maximum independent set in <code>G</code>.</p> http://stackoverflow.com/questions/1518630/what-language-features-are-required-in-a-programming-language-to-make-a-compiler/1520013#1520013 0 Answer by Rafał Dowgird for What language features are required in a programming language to make a compiler? Rafał Dowgird 2009-10-05T13:14:46Z 2009-10-05T13:14:46Z <blockquote> <p>My question is this: What is the minimal subset of language features such that someone could implement that language in itself?</p> </blockquote> <p>There is no requirement for the language to be useful for anything other than compiling itself? I present to you <code>Useless</code>, the language in which every text is a proper program and means "a program that takes any input and produces itself" (this is also known as <code>Useless</code> compiler).</p> http://stackoverflow.com/questions/1507091/python-mysqldb-query-timeout/1508287#1508287 0 Answer by Rafał Dowgird for python MySQLDB query timeout Rafał Dowgird 2009-10-02T08:17:49Z 2009-10-02T08:17:49Z <blockquote> <p>Why do I not get the signal until after execute finishes?</p> </blockquote> <p>The process waiting for network I/O is in an uninterruptible state (UNIX thing, not related to Python or MySQL). It gets the signal after the system call finishes (probably as <code>EINTR</code> error code, although I am not sure).</p> <blockquote> <p>Is there another reliable way to limit query execution time?</p> </blockquote> <p>I think that it is usually done by an external tool like <code>mkill</code> that monitors MySQL for long running queries and kills them. </p> http://stackoverflow.com/questions/1487194/subclasses-causing-unexpected-behavior-in-superclasses-oo-design-question/1487784#1487784 1 Answer by Rafał Dowgird for Subclasses causing unexpected behavior in superclasses — OO design question Rafał Dowgird 2009-09-28T15:44:56Z 2009-09-28T15:44:56Z <p>The example falls into "Doctor, it hurts when I do this" category. Yes, subclasses can break superclasses in various ways. No, there is no simple waterproof solution to prevent that.</p> <p>You can seal your superclass (make everything <code>final</code>) if your language supports this but then you lose flexibility. This is the bad kind of defensive programming (the good relies on robust code, the bad relies on strong restrictions). </p> <p>The best you can do is to act at human level - make sure that the human that writes the subclass understands the superclass. Tutoring/code review, good documentation, unit tests (in roughly this order of importance) can help achieve this. And of course it doesn't hurt to code the base class defensively.</p> http://stackoverflow.com/questions/1464923/how-can-i-print-only-every-third-index-in-perl-or-python/1464942#1464942 7 Answer by Rafał Dowgird for How can I print only every third index in Perl or Python? Rafał Dowgird 2009-09-23T09:30:57Z 2009-09-23T09:30:57Z <p>Python:</p> <pre><code>for x in a[::3]: something(x) </code></pre> http://stackoverflow.com/questions/1374126/how-to-expand-javascript-array-with-another-array/1438689#1438689 1 Answer by Rafał Dowgird for How to expand JavaScript Array with another Array? Rafał Dowgird 2009-09-17T12:51:18Z 2009-09-21T08:08:02Z <p>It is possible to do it using <code>splice()</code>:</p> <pre><code>b.unshift(b.length) b.unshift(a.length) Array.prototype.splice.apply(a,b) b.shift() // restore b b.shift() // </code></pre> <p>But despite being uglier it is not faster than <code>push.apply</code>, at least not in Firefox 3.0. Posted for completeness sake.</p> http://stackoverflow.com/questions/1442782/python-program-to-split-a-list-into-two-lists-with-alternating-elements/1443595#1443595 6 Answer by Rafał Dowgird for Python program to split a list into two lists with alternating elements Rafał Dowgird 2009-09-18T10:04:10Z 2009-09-18T10:04:10Z <p>This takes an iterator and returns two iterators:</p> <pre><code> import itertools def zigzag(seq): t1,t2 = itertools.tee(seq) even = itertools.islice(t1,0,None,2) odd = itertools.islice(t2,1,None,2) return even,odd </code></pre> <p>If you prefer lists then you can <code>return list(even),list(odd)</code>.</p> http://stackoverflow.com/questions/1404067/design-problem-with-nearly-static-data/1422220#1422220 1 Answer by Rafał Dowgird for Design problem with nearly static data Rafał Dowgird 2009-09-14T15:17:33Z 2009-09-14T15:17:33Z <p>What separates the environments? If it is the execution context (objects in a context only call ones in the same context), then you might use one thread per environment and store the "local-globals" in a thread-local storage (or just a global map with keys being thread IDs).</p> <p>This has some disadvantages. For one, it doesn't work if there are cross-context calls. And of course it forces you into a threaded model.</p> http://stackoverflow.com/questions/1415173/what-is-the-fastest-possible-way-to-sort-an-array-of-7-integers/1415311#1415311 4 Answer by Rafał Dowgird for What is the fastest possible way to sort an array of 7 integers? Rafał Dowgird 2009-09-12T14:57:56Z 2009-09-12T14:57:56Z <p>There are only 5040 permutations of 7 elements. You can programmaticaly generate a program that finds the one represented by your input in a minimal number of comparisons. It will be a big tree of <code>if-then-else</code> instructions, each comparing a fixed pair of nodes, for example <code>if (a[3]&lt;=a[6])</code>. </p> <p>The tricky part is deciding which 2 elements to compare in a particular internal node. For this, you have to take into account the results of comparisons in the ancestor nodes from root to the particular node (for example <code>a[0]&lt;=a[1], not a[2]&lt;=a[7], a[2]&lt;=a[5]</code>) and the set of possible permutations that satisfy the comparisons. Compare the pair of elements that splits the set into as equal parts as possible (minimize the size of the larger part). </p> <p>Once you have the permutation, it is trivial to sort it in a minimal set of swaps.</p> http://stackoverflow.com/questions/1408874/speech-recognition-programming/1411309#1411309 0 Answer by Rafał Dowgird for Speech Recognition & Programming Rafał Dowgird 2009-09-11T14:41:46Z 2009-09-11T14:41:46Z <p>Wouldn't your throat get sore after a while? I cannot imagine even an average length coding session (say, 6 hours) done by speaking.</p> http://stackoverflow.com/questions/1392315/problems-with-singleton-pattern/1407613#1407613 0 Answer by Rafał Dowgird for Problems with Singleton Pattern Rafał Dowgird 2009-09-10T20:43:16Z 2009-09-10T20:43:16Z <p>About this unit testing concern. The main problems seems to be not with testing the singletons themselves, but with testing the objects that <strong>use</strong> them.</p> <p>Such objects cannot be isolated for testing, since they have dependencies on singletons which are both hidden and hard to remove. It gets even worse if the singleton represents an interface to an external system (DB connection, payment processor, ICBM firing unit). Testing such an object might unexpectedly write into DB, send some money who knows where or even fire some intercontinental missiles. </p> http://stackoverflow.com/questions/1400486/how-can-i-give-a-component-more-than-one-droptargetlistener/1400550#1400550 2 Answer by Rafał Dowgird for How can I give a component more than one DropTargetListener? Rafał Dowgird 2009-09-09T15:56:37Z 2009-09-09T20:52:29Z <p><code>DropTarget</code> is a unicast source, so you can add at most one <code>DropTargetListener</code> to it. I believe it should be a simple object that examines the source (inside/outside) of the thing being dropped and calls one of your <code>DropTargetListener</code>s depending on the result. </p> <p>Edit: If you are hell bent on creating a "universal" solution, then you might try creating a wrapper event that passes method calls to the original event, but intercepts <code>rejectDrop()</code>, <code>acceptDrop()</code> (and maybe other methods that can cause trouble), then pass the wrapper to your listeners, until one accepts it. This assumes that the listeners recognize "good" events and act accordingly.</p> http://stackoverflow.com/questions/1355518/fast-algorithm-for-calculating-union-of-local-convex-hulls/1364429#1364429 1 Answer by Rafał Dowgird for Fast algorithm for calculating union of 'local convex hulls' Rafał Dowgird 2009-09-01T20:18:53Z 2009-09-01T20:18:53Z <p>A <a href="http://en.wikipedia.org/wiki/Sweep%5Fline%5Falgorithm" rel="nofollow">sweep line algorithm</a> can improve searching for the R-neighbors. Alternatively, you can consider only pairs of points that are in neighboring squares of square grid of width R. Both of these ideas can get rid of the N^2 - of course only if the points are relatively sparse.</p> <p>I believe that a clever combination of sweeping and convex hull finding cat get rid of the N^2 even if the points are not sparse (as in Olexiy's example), but cannot come up with a concrete algorithm.</p> http://stackoverflow.com/questions/1347085/improving-python-list-slicing/1347128#1347128 7 Answer by Rafał Dowgird for Improving Python list slicing Rafał Dowgird 2009-08-28T13:51:20Z 2009-08-28T13:51:20Z <p>Hm, maybe replace:</p> <pre><code>src[0:i-1].append(src[-1]) </code></pre> <p>with:</p> <pre><code>src[0:i-1] + src[-1:] #note the trailing ":", we want a list not an element </code></pre> http://stackoverflow.com/questions/1346247/whats-the-rationale-behind-the-qt-way-of-naming-classes/1346309#1346309 5 Answer by Rafał Dowgird for What's the rationale behind the Qt way of naming classes? Rafał Dowgird 2009-08-28T11:01:01Z 2009-08-28T11:01:01Z <p>I believe it is historical. Namespaces were introduced into C++ around 1995. Qt development started in 1991 so namespaces could not be used, obviously.</p> http://stackoverflow.com/questions/1270321/a-full-list-of-all-the-new-popular-databases-and-their-uses/1270546#1270546 0 Answer by Rafał Dowgird for A full list of all the new/popular databases and their uses? Rafał Dowgird 2009-08-13T07:30:03Z 2009-08-13T07:30:03Z <p>To file under both 'established' and 'key-value store': <a href="http://www.oracle.com/technology/products/berkeley-db/index.html" rel="nofollow">Berkeley DB</a>.</p> <p>Has transactions and replication. Usually linked as a lib (no standalone server, although you may write one). Values and keys are just binary strings, you can provide a custom sorting function for them (where applicable).</p> <p>Does not prevent from shooting yourself in the foot. Switch off locking/transaction support, access the db from two threads at once, end up with a corrupt file.</p> http://stackoverflow.com/questions/1174938/mechanism-to-ensure-a-loop-ends/1177412#1177412 1 Answer by Rafał Dowgird for Mechanism to ensure a loop ends Rafał Dowgird 2009-07-24T12:42:15Z 2009-07-24T12:42:15Z <p>Judging by his area of expertise (which includes formal proofs of correctness), I think he meant the <a href="http://en.wikipedia.org/wiki/Loop%5Fvariant" rel="nofollow">loop variant</a>, which is a general technique used to prove loop termination.</p> http://stackoverflow.com/questions/1164186/how-to-check-if-a-string-looks-randomized-or-human-generated-and-pronouncable/1164598#1164598 2 Answer by Rafał Dowgird for how to check if a string looks randomized, or human generated and pronouncable? Rafał Dowgird 2009-07-22T11:20:07Z 2009-07-22T11:20:07Z <p>Look up n-gram analysis. It is successfully used to automatically detect text language and works surprisingly well even on very short texts.</p> <p>The <a href="http://odur.let.rug.nl/~vannoord/TextCat/Demo/" rel="nofollow">online demo</a> recognized 'bilbomoothof' as English and 'sdfgbhm342r3f' as Nepali. It probably always returns the best match, even if it's a very poor one. I think you could train it to discern between 'pronounceable' and 'random'.</p> http://stackoverflow.com/questions/1158155/is-there-a-onlogn-algorithm-for-inverting-a-simply-linked-list/1158225#1158225 7 Answer by Rafał Dowgird for Is there a O(nlog(n)) algorithm for inverting a simply linked list? Rafał Dowgird 2009-07-21T09:44:21Z 2009-07-21T09:44:21Z <p>Every O(n) algorithm is also O(n log n), so the answer is yes.</p> http://stackoverflow.com/questions/1143260/create-ntfs-junction-point-in-python 2 Create NTFS junction point in Python Rafał Dowgird 2009-07-17T13:27:31Z 2009-07-17T13:59:35Z <p>Is there a way to create an NTFS junction point in Python? I know I can call the <code>junction</code> utility, but it would be better not to rely on external tools.</p> http://stackoverflow.com/questions/1802172/python-mysqldb-update-if-exists-else-insert/1802276#1802276 Comment by Rafał Dowgird on Python MySQLdb: Update if exists, else insert Rafał Dowgird 2009-11-26T21:34:52Z 2009-11-26T21:34:52Z One more thing - are you sure that BEFORE UPDATE will fire if there's no rows to update? http://stackoverflow.com/questions/1804311/how-to-check-if-an-integer-is-power-of-3/1804511#1804511 Comment by Rafał Dowgird on How to check if an integer is power of 3? Rafał Dowgird 2009-11-26T16:52:42Z 2009-11-26T16:52:42Z True in mathematical sense, not practical because of rounding errors. I checked that (log 3^40)/log(3^40-1)=1.0 on my machine. http://stackoverflow.com/questions/1802172/python-mysqldb-update-if-exists-else-insert/1802276#1802276 Comment by Rafał Dowgird on Python MySQLdb: Update if exists, else insert Rafał Dowgird 2009-11-26T12:20:38Z 2009-11-26T12:20:38Z There is a database that lets triggers read (let alone modify!) the table being updated? What happens if a statement inserts/updates 100 rows? Does the trigger on 30th row see the previous 29 modified rows? What about the atomicity of SQL statements? http://stackoverflow.com/questions/1787252/is-there-a-on-algorithm-to-build-a-max-heap/1793961#1793961 Comment by Rafał Dowgird on Is there a O(n) algorithm to build a max-heap? Rafał Dowgird 2009-11-25T08:35:57Z 2009-11-25T08:35:57Z +1 for being less lazy than me :) http://stackoverflow.com/questions/1787252/is-there-a-on-algorithm-to-build-a-max-heap/1789173#1789173 Comment by Rafał Dowgird on Is there a O(n) algorithm to build a max-heap? Rafał Dowgird 2009-11-24T21:14:09Z 2009-11-24T21:14:09Z @Peter: Quote from the link: &quot;Therefore, the cost of heapifying all subtrees is: [snip equations] O(n)&quot; http://stackoverflow.com/questions/1779358/conflicting-types-error-in-c/1779418#1779418 Comment by Rafał Dowgird on conflicting types error in C Rafał Dowgird 2009-11-22T18:00:32Z 2009-11-22T18:00:32Z Well, ask codepad admins :) http://stackoverflow.com/questions/1769680/random-prime-number/1769716#1769716 Comment by Rafał Dowgird on Random prime number Rafał Dowgird 2009-11-20T12:28:39Z 2009-11-20T12:28:39Z Optionally - read up on primes distribution to assure yourself that this algorithm is feasible (i.e. won't need trillions of attempts). http://stackoverflow.com/questions/1755056/how-to-implement-a-double-linked-list-with-only-one-pointer Comment by Rafał Dowgird on How to implement a double linked list with only one pointer? Rafał Dowgird 2009-11-18T13:13:48Z 2009-11-18T13:13:48Z Doubly linked list? You mean that one should be able to traverse it both ways having an external pointer to <i>any</i> of its nodes? http://stackoverflow.com/questions/1700200/how-to-calculate-the-3d-line-segment-of-two-rectangles/1700238#1700238 Comment by Rafał Dowgird on How to calculate the 3D line segment of two rectangles? Rafał Dowgird 2009-11-10T08:32:41Z 2009-11-10T08:32:41Z @Aaron: If neither of the rectangles intersects the line, then it is ok. If only rectangle 1 intersects the other plane, then you have a false intersection. Will try to explain in an own answer. http://stackoverflow.com/questions/1700200/how-to-calculate-the-3d-line-segment-of-two-rectangles/1700238#1700238 Comment by Rafał Dowgird on How to calculate the 3D line segment of two rectangles? Rafał Dowgird 2009-11-09T16:58:23Z 2009-11-09T16:58:23Z @Aaron: You are intersecting an infinite line with a rectangle, right? How can their intersection points lie outside the line segments that bound the rectangle? http://stackoverflow.com/questions/1700200/how-to-calculate-the-3d-line-segment-of-two-rectangles/1700238#1700238 Comment by Rafał Dowgird on How to calculate the 3D line segment of two rectangles? Rafał Dowgird 2009-11-09T14:55:59Z 2009-11-09T14:55:59Z Ok, what happens in point 3. if the first rectangle does not intersect with the second one, but intersects with its plane? Won't you get a false intersection? http://stackoverflow.com/questions/1700200/how-to-calculate-the-3d-line-segment-of-two-rectangles/1700238#1700238 Comment by Rafał Dowgird on How to calculate the 3D line segment of two rectangles? Rafał Dowgird 2009-11-09T14:03:28Z 2009-11-09T14:03:28Z Perhaps I don't understand 3. What do &quot;the lines&quot; in &quot;Intersect the lines&quot; refer to? http://stackoverflow.com/questions/1700200/how-to-calculate-the-3d-line-segment-of-two-rectangles/1700238#1700238 Comment by Rafał Dowgird on How to calculate the 3D line segment of two rectangles? Rafał Dowgird 2009-11-09T11:28:41Z 2009-11-09T11:28:41Z I believe this computes intersection of the first rectangle with the plane that contains the second rectangle. And 2. might yield a plane instead of a line (the case when both rectangles are in the same plane). http://stackoverflow.com/questions/1687047/hash-function-that-maps-similar-inputs-to-similar-outputs Comment by Rafał Dowgird on Hash function that maps similar inputs to similar outputs? Rafał Dowgird 2009-11-06T12:14:49Z 2009-11-06T12:14:49Z What is your definition of a &quot;small change&quot; in the output? Edit distance (treating hashes as strings) or mathematical distance of numbers (treating hashes as integers?) http://stackoverflow.com/questions/1669922/is-it-possible-to-find-two-numbers-whose-difference-is-minimum-in-on-time/1670065#1670065 Comment by Rafał Dowgird on Is it possible to find two numbers whose difference is minimum in O(n) time Rafał Dowgird 2009-11-03T21:49:28Z 2009-11-03T21:49:28Z @Kathy: Then they should have written &quot;Find two <i>distinct</i> integers whose <i>modulus</i> of difference is minimum&quot;. Caveat specificator :)