active questions tagged algorithm - Stack Overflow most recent 30 from stackoverflow.com 2010-02-09T20:00:10Z http://stackoverflow.com/feeds/tag/algorithm http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/2209084/mnemonic-password-generation-algorithm-for-qwerty-keyboards 8 Mnemonic Password Generation Algorithm for QWERTY Keyboards Alix Axel 2010-02-05T17:31:31Z 2010-02-09T19:36:46Z <p>I've a <strong>"<a href="http://definr.com/mnemonic" rel="nofollow">mnemonic</a>" password generation</strong> function that goes something like this:</p> <pre><code>function Mnemonic($mnemonic) { $result = null; $charset = array(str_split('aeiou', 1), str_split('bcdfghjklmnpqrstvwxyz', 1)); for ($i = 1; $i &lt;= $mnemonic; $i++) { $result .= $charset[$i % 2][array_rand($charset[$i % 2])]; } return $result; } </code></pre> <p>Basically this generates a string with <code>$mnemonic</code> length where every odd character is a consonant and every even character is a vowel. While I understand this reduces the password complexity it's usually much more <strong>easier to remember</strong>. Now I want to improve it by generating strings that are <strong>easy to type</strong>.</p> <p><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/3/3a/Qwerty.svg/640px-Qwerty.svg.png" alt="QWERTY Keyboard Layout"></p> <p>For instance, while a *nix newbie I always prefer RHEL based distributions over Debian ones, the main reason is the ease of typing <code>yum</code> versus the ease of typing <code>apt[-get]</code>, just try it for yourself.</p> <p>How should I implement the logic to generate strings that are easy to type on QWERTY keyboards?</p> http://stackoverflow.com/questions/2230718/production-code-for-finding-junction-in-a-linked-list 0 Production code for finding junction in a linked list Neeraj 2010-02-09T16:36:10Z 2010-02-09T19:05:53Z <p>Hi all,<br> I was asked this question in some interview.</p> <p>I was required to write code for finding junction in a linked list (which is in form of Y with both arms not necessarily equal) for production environment in O(1) space and linear time.<br> I came up with this solution (which i had previously seen somewhere) :<pre> 1. Measure lengths of both lists, let them be l1 and l2 2. Move the pointer of larger list by |(l1-l2)|. 3. Now move together both the pointers, if they point to same location, that is the junction. </pre> Interviewer: How will your code handle ? </p> <blockquote> Case 1. The Y-format linked list has loop in the end after the junction. <br/> Case 2. Either of the input lists is cyclic and they don't merge. <br/> Case 3. The Y-format list has loop in the end before the junction.</blockquote> <p>In response to case 1, my answer was:<blockquote>I will find the loop in the list using two pointers (one fast and slow), measure the length to the node at which both the pointers meet and then proceed as previous case.</blockquote> Whereas, for cases 2 and 3, I was able to figure out no better solution than gracefully exiting when a loop is detected (using the 2-pointer technique).</p> <p><br/> I believe there are better answers to this problem.Please drop down yours :).</p> <p>Thanks,</p> http://stackoverflow.com/questions/2230361/fractional-counting-via-integers 4 Fractional Counting Via Integers Steve H. 2010-02-09T15:53:20Z 2010-02-09T19:01:16Z <p>I receive an integer that represents a dollar amount in fractional denominations. I would like an algorithm that can add those numbers without parsing and converting them into doubles or decimals.</p> <p>For example, I receive the integer 50155, which means 50 and 15.5/32 dollars. I then receive 10210 which is 10 and 21/32 dollars. So 50 15.5/32 + 10 21/32 = 61 4.5/32, thus:</p> <p>50155 + 10210 = 61045</p> <p><strong>Again, I want to avoid this:</strong></p> <pre><code>int a = 50155; int b = a / 1000; float c = a % 1000; float d = b; d += c / 320f; // d = 50.484375 </code></pre> <p>I would much prefer this:</p> <pre><code>int a = 50155; int b = 10210; int c = MyClass.Add(a.b); // c = 61045 ... public int Add(int a, int b) { // ????? } </code></pre> <p>Thanks in advance for the help!</p> http://stackoverflow.com/questions/2202262/map-from-integer-ranges-to-arbitrary-single-integers 11 Map from integer ranges to arbitrary single integers Ian Durkan 2010-02-04T18:46:52Z 2010-02-09T18:54:00Z <p>Working in C++ in a Linux environment, I have a situation where a number of integer ranges are defined, and integer inputs map to different arbitrary integers based on which range they fall into. None of the ranges overlap, and they aren't always contiguous. </p> <p>The "simplest" way to solve this problem is with a bunch of if-statements for each range, but the number of ranges, their bounds, and the target values can all vary, so if-statements aren't maintainable.</p> <p>For example, the ranges might be [0, 70], called r_a, [101, 250], call it r_b, and [201, 400], call it r_c. Inputs in r_a map to 1, in r_b map to 2, and r_c map to 3. Anything not in r_a, r_b, r_c maps to 0. </p> <p>I can come up with a data structure &amp; algorithm that stores tuples of (bounds, map target) and iterates through them, so finding the target value takes linear time in the number of bounds pairs. I can also imagine a scheme that keeps the pairs ordered and uses a binary sort-ish algorithm against all the lower bounds (or upper bounds), finds the closest to the input, then compares against the opposing bound. </p> <p>Is there a better way to accomplish the mapping than a binary-search based algorithm? Even better, is there some C++ library out that does this already?</p> http://stackoverflow.com/questions/2230231/with-ieee-754-0-absconst-1-is-x-const-const-guaranteed-to-return-di 8 With IEEE-754, 0 < ABS(const) < 1, is (x / const) * const guaranteed to return distinct results for distinct values of X? Quassnoi 2010-02-09T15:36:43Z 2010-02-09T18:44:27Z <p>Assume I do this operation:</p> <pre><code>(X / const) * const </code></pre> <p>with double-precision arguments as defined by <a href="http://en.wikipedia.org/wiki/IEEE_754-2008" rel="nofollow"><code>IEEE 754-2008</code></a>, division first, then multiplication.</p> <p><code>const</code> is in the range <code>0 &lt; ABS(const) &lt; 1</code>.</p> <p>Assuming that the operation succeeds (no overflows occur), are distinct arguments of <code>X</code> to this operation guaranteed to return distinct results?</p> <p>In other words, are there any <code>X1</code>, <code>X2</code> and <code>0 &lt; ABS(const) &lt; 1</code> so that <code>X1 &lt;&gt; X2</code>, but <code>(X1 / const) * const = (X2 / const) * const</code>?</p> http://stackoverflow.com/questions/2231488/seeking-algo-for-text-diff-that-detects-and-can-group-similar-lines 1 Seeking algo for text diff that detects and can group similar lines Thomas Tempelmann 2010-02-09T18:33:20Z 2010-02-09T18:33:20Z <p>I am in the process of writing a diff text tool to compare two similar source code files.</p> <p>There are many such "diff" tools around, but mine shall be a little improved:</p> <p>If it finds a set of lines are mismatched on both sides (ie. in both files), it shall not only highlight those lines but also highlight the individual changes in these lines (I call this inter-line comparison here).</p> <p>An example of my somewhat working solution:</p> <p><img src="http://files.tempel.org/tmp/diff_example.png" alt="alt text"></p> <p>What it currently does is to take a set of mismatched lines and running their single chars thru the diff algo once more, producing the pink highlighting.</p> <p>However, the second set of mismatches, containing "original 2", requires more work: Here, the first two right lines ("added line a/b") were added, while the third line is an altered version of the left side. I wish my software to detect this difference between a likely alteration and a probable new line.</p> <p>When looking at this simple example, I can rather easily detect this case:</p> <p>With an algo such as Levenshtein, I could find that of all right lines in the set of 3 to 5, line 5 matches left line 3 best, thus I could deduct that lines 3 and 4 on the right were added, and perform the inter-line comparison on left line 3 and right line 5.</p> <p>So far, so good. But I am still stuck with how to turn this into a more general algorithm for this purpose.</p> <p>In a more complex situation, a set of different lines could have added lines on both sides, with a few closely matching lines in between. This gets quite complicated:</p> <p>I'd have to match not only the first line on the left to the best on the right, but vice versa as well, and so on with all other lines. Basically, I have to match every line on the left against every one on the right. At worst, this might create even crossings, so that it's not easily clear any more which lines were newly inserted and which were just altered (Note: I do not want to deal with possible moved lines in such a block, unless that would actually simplify the algorithm).</p> <p>Sure, this is never going to be perfect, but I'm trying to get it better than it's now. Any suggestions that aren't too theoerical but rather practical (I'm not good understanding abstract algos) are appreciated.</p> http://stackoverflow.com/questions/25430/an-o1-sort 3 An O(1) Sort ~~~ FlySwat 2008-08-24T22:59:57Z 2010-02-09T17:46:00Z <p>Before you stone me for being a heretic, There is a sort that proclaims to be O(1), called "Bead Sort" (http://en.wikipedia.org/wiki/Bead_sort) , however that is pure theory, when actually applied I found that it was actually O(N * M), which is pretty pathetic.</p> <p>That said, Lets list out some of the fastest sorts, and their best case and worst case speed in Big O notation.</p> <p>~~ FlySwat ~~</p> http://stackoverflow.com/questions/2230720/java-md5-which-one-of-these-is-correct 1 Java MD5 which one of these is correct? Donal Rafferty 2010-02-09T16:36:46Z 2010-02-09T17:29:30Z <p>I am trying to Sip Register and I get the challenge from the server.</p> <p>So I need to use the MD5 algorithm on the nonce and then send that to the server to authenticate.</p> <p>I have come across two examples of MD5 encryption and I have tried both and each one gives a different string back to me, so I was wondering which one is the correct one to use?</p> <p>Thanks in advance</p> <p>EDIT:</p> <p>Ok thanks for the commons codecs.</p> <p>I have edited it because I have to encode the nonce value I get back from the server with my username and password to send it back.</p> <p>So it is a particuler type of encoding for SIP registration, can anyone point to a tutorial on how to do this? Or have any hints?</p> http://stackoverflow.com/questions/2196124/detecting-patterns-in-waves 31 Detecting patterns in waves Alaor 2010-02-03T22:51:58Z 2010-02-09T17:18:46Z <p>Hello all!</p> <p>I'm trying to read a image from a electrocardiography and detect each one of the main waves in it (P wave, QRS complex and T wave). Now I can read the image and get a vector like (4.2; 4.4; 4.9; 4.7; ...) representative of the values in the electrocardiography, what is half of the problem. I need a algorithm that can walk through this vector and detect when each of this waves start and end. </p> <p>Here is a example of one of its graphs:</p> <p><img src="http://www.freeimagehosting.net/uploads/90e7c85a61.jpg" alt="alt text"></p> <p>Would be easy if they always had the same size, but it's not like it works, or if I knew how many waves the ecg would have, but it can vary too. Does anyone have some ideas?</p> <p>Thanks!</p> <p><strong>Updating</strong></p> <p>Example of what I'm trying to achieve:</p> <p>Given the wave</p> <p><img src="http://www.freeimagehosting.net/uploads/f2b04fb5bf.jpg" alt="alt text"></p> <p>I can extract the vector</p> <p>[0; 0; 20; 20; 20; 19; 18; 17; 17; 17; 17; 17; 16; 16; 16; 16; 16; 16; 16; 17; 17; 18; 19; 20; 21; 22; 23; 23; 23; 25; 25; 23; 22; 20; 19; 17; 16; 16; 14; 13; 14; 13; 13; 12; 12; 12; 12; 12; 11; 11; 10; 12; 16; 22; 31; 38; 45; 51; 47; 41; 33; 26; 21; 17; 17; 16; 16; 15; 16; 17; 17; 18; 18; 17; 18; 18; 18; 18; 18; 18; 18; 17; 17; 18; 19; 18; 18; 19; 19; 19; 19; 20; 20; 19; 20; 22; 24; 24; 25; 26; 27; 28; 29; 30; 31; 31; 31; 32; 32; 32; 31; 29; 28; 26; 24; 22; 20; 20; 19; 18; 18; 17; 17; 16; 16; 15; 15; 16; 15; 15; 15; 15; 15; 15; 15; 15; 15; 14; 15; 16; 16; 16; 16; 16; 16; 16; 16; 16; 15; 16; 15; 15; 15; 16; 16; 16; 16; 16; 16; 16; 16; 15; 16; 16; 16; 16; 16; 15; 15; 15; 15; 15; 16; 16; 17; 18; 18; 19; 19; 19; 20; 21; 22; 22; 22; 22; 21; 20; 18; 17; 17; 15; 15; 14; 14; 13; 13; 14; 13; 13; 13; 12; 12; 12; 12; 13; 18; 23; 30; 38; 47; 51; 44; 39; 31; 24; 18; 16; 15; 15; 15; 15; 15; 15; 16; 16; 16; 17; 16; 16; 17; 17; 16; 17; 17; 17; 17; 18; 18; 18; 18; 19; 19; 20; 20; 20; 20; 21; 22; 22; 24; 25; 26; 27; 28; 29; 30; 31; 32; 33; 32; 33; 33; 33; 32; 30; 28; 26; 24; 23; 23; 22; 20; 19; 19; 18; 17; 17; 18; 17; 18; 18; 17; 18; 17; 18; 18; 17; 17; 17; 17; 16; 17; 17; 17; 18; 18; 17; 17; 18; 18; 18; 19; 18; 18; 17; 18; 18; 17; 17; 17; 17; 17; 18; 17; 17; 18; 17; 17; 17; 17; 17; 17; 17; 18; 17; 17; 18; 18; 18; 20; 20; 21; 21; 22; 23; 24; 23; 23; 21; 21; 20; 18; 18; 17; 16; 14; 13; 13; 13; 13; 13; 13; 13; 13; 13; 12; 12; 12; 16; 19; 28; 36; 47; 51; 46; 40; 32; 24; 20; 18; 16; 16; 16; 16; 15; 16; 16; 16; 17; 17; 17; 18; 17; 17; 18; 18; 18; 18; 19; 18; 18; 19; 20; 20; 20; 20; 20; 21; 21; 22; 22; 23; 25; 26; 27; 29; 29; 30; 31; 32; 33; 33; 33; 34; 35; 35; 35; 0; 0; 0; 0;]</p> <p>I would like to detect, for example</p> <p>P wave in [19 - 37]</p> <p>QRS complex in [51 - 64]</p> <p>etc...</p> http://stackoverflow.com/questions/2227191/speclialized-hashtable-algorithms-for-dynamic-static-incremental-data 2 Speclialized hashtable algorithms for dynamic/static/incremental data StasM 2010-02-09T06:21:59Z 2010-02-09T17:03:41Z <p>I have a number of data sets that have key-value pattern - i.e. a string key and a pointer to the data. Right now it is stored in hashtables, each table having array of slots corresponding to hash keys, and on collision forming a linked list under each slot that has collision (direct chaining). All implemented in C (and should stay in C) if it matters.</p> <p>Now, the data is actually 3 slightly different types of data sets:</p> <ol> <li>Some sets can be changed (keys added, removed, replaced, etc.) at will</li> <li>For some sets data can be added but almost never replaced/removed (i.e. it can happen, but in practice it is very rare)</li> <li>For some sets the data is added once and then only looked up, it is never changed once the whole set is loaded. </li> </ol> <p>All sets of course have to support lookups as fast as possible, and consume minimal amounts of memory (though lookup speed is more important than size). </p> <p>So the question is - is there some better hashtable structure/implementation that would suit the specific cases better? I suspect for the first case the chaining is the best, but not sure about two other cases. </p> http://stackoverflow.com/questions/2230295/whats-the-best-way-to-dedupe-a-table 1 What's the best way to dedupe a table? froadie 2010-02-09T15:46:16Z 2010-02-09T16:55:11Z <p>I've seen a couple of solutions for this, but I'm wondering what the best and most efficient way is to de-dupe a table. You can use code (SQL, etc.) to illustrate your point, but I'm just looking for basic algorithms. I assumed there would already be a question about this on SO, but I wasn't able to find one, so if it already exists just give me a heads up.</p> <p>(Just to clarify - I'm referring to getting rid of duplicates in a table that has an incremental automatic PK and has some rows that are duplicates in everything but the PK field.)</p> http://stackoverflow.com/questions/2230421/how-do-i-implement-a-sort-of-a-head-to-tail-list 1 How do I implement a sort of a head to tail list? Bill Terry 2010-02-09T16:01:04Z 2010-02-09T16:28:50Z <p>Given the following inputs: </p> <pre><code>DAVSCAF1WD6-11 ==&gt; MOTENVF1WD6-11 MOTENVF1WD6-11 ==&gt; WNDVUTF1WD4-11 TPKAKSF1WD6-11 ==&gt; KSCYMOF1WD6-11 WNDVUTF1WD3-11 ==&gt; WGTNUTF1WD2-11 DNVRCOF1WD7-11 ==&gt; BELTKSF1WD3-11 SNFCCAF1WD6-16 ==&gt; DAVSCAF1WD5-16 WGTNUTF1WD2-11 ==&gt; DTSRCOF1WD3-11 DTSRCOF1WD3-11 ==&gt; DNVRCOF1WD6-11 BELTKSF1WD3-11 ==&gt; TPKAKSF1WD6-11 </code></pre> <p>I need to produce the following results:</p> <pre><code>SNFCCAF1WD6-16 ==&gt; DAVSCAF1WD5-16 DAVSCAF1WD6-11 ==&gt; MOTENVF1WD6-11 MOTENVF1WD6-11 ==&gt; WNDVUTF1WD4-11 WNDVUTF1WD3-11 ==&gt; WGTNUTF1WD2-11 WGTNUTF1WD2-11 ==&gt; DTSRCOF1WD3-11 DTSRCOF1WD3-11 ==&gt; DNVRCOF1WD6-11 DNVRCOF1WD7-11 ==&gt; BELTKSF1WD3-11 BELTKSF1WD3-11 ==&gt; TPKAKSF1WD6-11 TPKAKSF1WD6-11 ==&gt; KSCYMOF1WD6-11 </code></pre> <p>This is a list where each tail points to the head of the next item in line (ex. <code>SNFCCAF ==&gt; DAVSCAF ==&gt; DAVSCAF ==&gt; MOTENVF ==&gt; MOTENVF ==&gt; WNDVUTF ==&gt; etc.</code> ) Only the leading alpha charaters are significant in this case.</p> <p>How can I accomplish this as elegantly as possible? The language this is being implemented in is Java.</p> http://stackoverflow.com/questions/2230153/algorithm-for-sorting-a-nested-adjecency-model-in-ruby 1 Algorithm for sorting a nested/adjecency model in Ruby jacortinas 2010-02-09T15:25:27Z 2010-02-09T15:48:07Z <p>I've been trying to find a good way of doing this, either on the client side in Javascript or at the last minute within the server. This is a Rails application but it is a pretty generic question. I have a model that is hierarchical, and is currently stored in a nested set model. The model then has:</p> <pre><code>parent_id, lft, and rgt </code></pre> <p>I would like to pull out all of the models in one select statement from the database, therefore giving me a flat list of models, and then sort them on the fly into a tree hierarchy. I have not found a clean way to do this that would not require recursion. I'm sure there is a nice algorithm out there for this. Thanks.</p> http://stackoverflow.com/questions/2229546/algorithm-for-pattern-matching 0 Algorithm for pattern matching Appu 2010-02-09T13:58:40Z 2010-02-09T15:25:27Z <p><strong>Background</strong></p> <p>I am designing an application which will convert text from one language to other. For example, input text <code>hello</code> will be converted to specified language text. This is done by having a lookup table for each language. Conversion algorithm has the following steps.</p> <ol> <li>Looks for exact match. The whole word <code>hello</code> will be the pattern. If any matches found, stop processing and return the match.</li> <li>Else start from left-right and lookup for each character until all the combinations are done. Ex: Iteration1 : pattern = <code>h</code>, 2nd - <code>he</code>, 3rd - <code>hel</code> and so on. Matched token will be kept in a temporary buffer and returned when there are no more matches. This works like <em>maximal munch rule</em>.</li> <li>If match found, the matched text will be removed from original text and continue processing with the remaining text.</li> </ol> <p>This algorithm will have to iterate over the input text multiple times and leads into quadratic complexity. I am trying to optimize this by arranging the lookup table in a tree structure (very similar to suffix tree). If there are lookup text for <code>h</code>, <code>hel</code>, <code>lo</code>, it will be organized like</p> <pre><code>root --h ----hel --lo </code></pre> <p>This will help me to avoid unnecessary lookups. After matching <code>h</code>, I need to goto next character only if <code>h</code> node has got children. This reduces the number of iterations drastically.</p> <p><strong>Questions</strong></p> <ol> <li>What is the name of this kind of data structure? Is there a ready-made implementation available for C or C++?</li> <li>Do you see any possible improvements on the above algorithm or data structure?</li> </ol> <p>Any thoughts...?</p> http://stackoverflow.com/questions/1582356/fastest-way-of-finding-the-middle-value-of-a-triple 3 Fastest way of finding the middle value of a triple? Sophomore 2009-10-17T14:48:49Z 2010-02-09T14:58:44Z <p>I've got the following scenario:</p> <p>There are three ("pseudo" randomly chosen) int or float values which represent indices of an array. Now I'd like to compare the appropriate values from that array. After having compared them I'd like to know the middle value of the three and use this specific element for some further array operations.</p> <p>The question is, what is the <i>fastest</i> way of <b>finding the middle of the three</b> within Java? My idea was this kind of pattern - as there are three numbers there are 6 possible permutations. Obviously, there is some ugly overhead and the flow of control isn't really that clearly laid out...</p> <pre><code>if (array[randomIndexA] &gt;= array[randomIndexB] &amp;&amp; array[randomIndexB] &gt;= array[randomIndexC]) </code></pre> <p>It would be really nice, if someone could help me out with a <i>better</i> and <i>faster</i> way of doing this. Even a plain logical form with clauses would be a nice thing...<br> Have a nice weekend anyway :D</p> http://stackoverflow.com/questions/494830/how-to-determine-if-a-linked-list-has-a-cycle-using-only-two-memory-locations 5 How to determine if a linked list has a cycle using only two memory locations. jeffD 2009-01-30T07:51:59Z 2010-02-09T14:04:43Z <p>Does anyone know of an algorithm to find if a linked list loops on itself using only two variables to traverse the list. Say you have a linked list of objects, it doesn't matter what type of object. I have a pointer to the head of the linked list in one variable and I am only given one other variable to traverse the list with. </p> <p>So my plan is to compare pointer values to see if any pointers are the same. The list is of finite size but may be huge. I can set both variable to the head and then traverse the list with the other variable, always checking if it is equal to the other variable, but, if I do hit a loop I will never get out of it. I'm thinking it has to do with different rates of traversing the list and comparing pointer values. Any thoughts?</p> http://stackoverflow.com/questions/2216590/can-the-bigo-of-an-algorithm-be-found-programmatically-by-analyzing-its-perfs 8 Can the bigO of an algorithm be found programmatically by analyzing its perfs? WizardOfOdds 2010-02-07T09:48:08Z 2010-02-09T13:45:39Z <p>Note that I don't have a "problem" and I'm not looking for "another way to find the big O of my algorithm".</p> <p>What I'd like to know is if it would be possible write a program to which you'd pass data points that would all be perfs measurements of an algorithm for various input size: <code>(n,time taken to solve problem for n)</code> and that would then determine the complexity of your algorithm.</p> <p>For example here's what the input could be (it could be much larger, it's really just an example, that's not the point of the question):</p> <pre><code> 36 000 took 16 ms 109 000 took 21 ms 327 000 took 68 ms 984 000 took 224 ms 2 952 000 took 760 ms 8 857 000 took 2305 ms 26 571 000 took 7379 ms 79 716 000 took 23336 ms </code></pre> <p>Using such kind of data, is it possible to write a program that would tell if we have, say, an <code>O(n)</code>, <code>log(n)</code>, <code>n log(n)</code> or <code>n!</code> algo?</p> http://stackoverflow.com/questions/244452/what-is-an-efficient-algorithm-to-find-area-of-overlapping-rectangles 9 What is an Efficient algorithm to find Area of Overlapping Rectangles namenlos 2008-10-28T19:10:45Z 2010-02-09T12:05:10Z <h1>My situation</h1> <ul> <li>Input: a set of rectangles </li> <li>each rect is comprised of 4 doubles like this: (x0,y0,x1,y1)</li> <li>they are not "rotated" at any angle, all they are "normal" rectangles that go "up/down" and "left/right" with respect to the screen</li> <li>they are randomly placed - they may be touching at the edges, overlapping , or not have any contact</li> <li>I will have several hundred rectangles</li> <li>this is implemented in C#</li> </ul> <h1>I need to find </h1> <ul> <li>The area that is formed by their overlap - all the area in the canvas that more than one rectangle "covers" (for example with two rectangles, it would be the intersection)</li> <li>I don't need the geometry of the overlap - just the area (example: 4 sq inches)</li> <li>Overlaps shouldn't be counted multiple times - so for example imagine 3 rects that have the same size and position - they are right on top of each other - this area should be counted once (not three times)</li> </ul> <h1>Example</h1> <ul> <li>The image below contains thre rectangles: A,B,C</li> <li>A and B overlap (as indicated by dashes)</li> <li>B and C overlap (as indicated by dashes)</li> <li>What I am looking for is the area where the dashes are shown</li> </ul> <p>-</p> <pre><code>AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAA--------------BBB AAAAAAAAAAAAAAAA--------------BBB AAAAAAAAAAAAAAAA--------------BBB AAAAAAAAAAAAAAAA--------------BBB BBBBBBBBBBBBBBBBB BBBBBBBBBBBBBBBBB BBBBBBBBBBBBBBBBB BBBBBB-----------CCCCCCCC BBBBBB-----------CCCCCCCC BBBBBB-----------CCCCCCCC CCCCCCCCCCCCCCCCCCC CCCCCCCCCCCCCCCCCCC CCCCCCCCCCCCCCCCCCC CCCCCCCCCCCCCCCCCCC </code></pre> http://stackoverflow.com/questions/2222769/python-sort-parallel-arrays-in-place 5 Python sort parallel arrays in place? dsimcha 2010-02-08T15:49:29Z 2010-02-09T08:49:34Z <p>Is there an easy (meaning without rolling one's own sorting function) way to sort parallel lists <strong>without unnecessary copying</strong> in Python? For example:</p> <pre><code>foo = range(5) bar = range(5, 0, -1) parallelSort(bar, foo) print foo # [4,3,2,1,0] print bar # [1,2,3,4,5] </code></pre> <p>I've seen the examples using <code>zip</code> but it seems silly to copy all your data from parallel lists to a list of tuples and back again if this can be easily avoided.</p> http://stackoverflow.com/questions/1690347/shortest-path-with-a-fixed-number-of-edges 0 Shortest path with a fixed number of edges Phill 2009-11-06T20:51:56Z 2010-02-09T06:53:35Z <p>We were discussing this problem in class, and were unable to come up with a solution I found satisfying.</p> <p>The problem: Find the shortest path through a graph in efficient time, with the additional constraint that the path must contain exactly <em>n</em> nodes.</p> <p>We have a directed, weighted graph. It may, or may not contain a loop. We can easily find the shortest path using Dijkstra's algorithm, but Dijkstra's makes no guarantee about the number of edges.</p> <p>The best we could come up with was to keep a list of the best n paths to a node, but this uses a huge amount of memory over vanilla Dijkstra's.</p> http://stackoverflow.com/questions/2217206/smallest-sum-of-pairs 9 Smallest sum of pairs pieguy 2010-02-07T15:21:28Z 2010-02-09T06:44:02Z <p>Given <strong>2N-points</strong> in a <strong>2D-plane</strong>, you have to group them into <strong>N pairs</strong> such that the overall sum of distances between the points of all of the pairs is the minimum possible value.<strong>The desired output is only the sum.</strong></p> <p>In other words, if <strong>a1,a2,..an</strong> are the distances between points of first, second...and nth pair respectively, then <strong>(a1+a2+...an) should be minimum.</strong></p> <p>Let us consider this test-case, if the <strong>2*5</strong> points are : <strong>{20,20}, {40, 20}, {10, 10}, {2, 2}, {240, 6}, {12, 12}, {100, 120}, {6, 48}, {12, 18}, {0, 0}</strong></p> <p>The desired output is <strong>237</strong>.</p> <p>This is not my homework,I am inquisitive about different approaches rather than brute-force.</p> http://stackoverflow.com/questions/2218931/extension-of-binary-search-algo-to-find-the-first-and-last-index-of-the-key-value 1 Extension of Binary search algo to find the first and last index of the key value to be searched in an array. phillytu 2010-02-08T00:13:27Z 2010-02-09T06:30:44Z <p>The problem is to extend the binary search algorithm to find all occurrences of a target value in a sorted array in the most efficient way. Concretely speaking, the input of the algorithm are (1) a sorted array of integers, where some numbers may appear more than once, and (2) a target integer to be searched. The output of the algorithm should be a pair of index values, indicating the first and last occurrence of the integer in the array, if it does occur. The source code could be in c#, c, c++.</p> <p>Also what is the max and min number of comparisons that we might need to find the indexes.</p> http://stackoverflow.com/questions/2226234/trying-to-calculate-pi-to-n-number-of-decimals-with-c 0 Trying to calculate Pi to N number of decimals with C#. Sergio Tapia 2010-02-09T01:48:34Z 2010-02-09T04:08:05Z <p>Note: I've already read <a href="http://stackoverflow.com/questions/39395/how-do-i-calculate-pi-in-c">this topic</a>, but I don't understand it and it doesn't provide a solution I could use. I'm terrible with number problems.</p> <p>What's a simple way to generate Pi to what number of decimals a user wants? This isn't for homework, just trying to complete some of the projects listed here:</p> <p><a href="http://www.dreamincode.net/forums/showtopic78802.htm" rel="nofollow">Link</a></p> http://stackoverflow.com/questions/1545606/python-k-means-algorithm 1 Python k-means algorithm Eeyore 2009-10-09T19:16:13Z 2010-02-09T03:31:12Z <p>I am looking for Python implementation of k-means algorithm with examples to cluster and cache my database of coordinates.</p> http://stackoverflow.com/questions/2224492/mergesort-beginner-question 2 mergesort beginner question Robert 2010-02-08T20:04:01Z 2010-02-09T00:35:19Z <p>Dear all, I now have a question on Mergesort algorithm.Because in the original algorithm,the list to be sorted is diveded into two sublists and sort recursively. Now how about I want to divide the list of lengh n into 3 sub-lists of lengh n/3,and then sort these three sublists recursively and then combine? I just simply modify the original algorithm by replacing everwhere 2 into a 3,wondered if that makes sense.</p> <p>How about make it more general?Can we divide the lists into K sublists and sort them and combine?</p> <p>Thank you for sharing your ideas for me.</p> http://stackoverflow.com/questions/388302/how-to-implement-eigenvalue-calculation-with-mapreduce-hadoop 3 how to implement eigenvalue calculation with MapReduce/Hadoop? Liu Liu 2008-12-23T06:29:45Z 2010-02-09T00:00:15Z <p>It is possible because PageRank was a form of eigenvalue and that is why MapReduce introduced. But there seems problems in actual implementation, such as every slave computer have to maintain a copy of the matrix?</p> http://stackoverflow.com/questions/2216373/find-the-big-o-of-a-function 3 Find the big-O of a function Robert 2010-02-07T08:11:53Z 2010-02-08T22:42:14Z <p>Please help me on following two functions, I need to simplify them.</p> <blockquote> <p>O(nlogn + n^1.01)</p> <p>O(log (n^2))</p> </blockquote> <p>My current idea is </p> <blockquote> <p>O(nlogn + n^1.01) = O(nlogn)</p> <p>O(log (n^2)) = O (log (n^2))</p> </blockquote> <p>Please kindly help me on these two simplification problems and briefly give an explanation, thanks.</p> http://stackoverflow.com/questions/1772609/procedurally-transform-subquery-into-join 4 Procedurally transform subquery into join fatcat1111 2009-11-20T19:04:25Z 2010-02-08T22:19:51Z <p>Is there a generalized procedure or algorithm for transforming a SQL subquery into a join, or vice versa? That is, is there a set of typographic operations that can be applied to a syntactically correct SQL query statement containing a subquery that results in a functionally equivalent statement without a subquery? If so, what are they (i.e., what's the algorithm), and in what cases do they not apply? </p> http://stackoverflow.com/questions/2221984/algorithms-for-spotting-anomalies-spikes-in-traffic-data 8 Algorithm(s) for spotting anomalies ("spikes") in traffic data Vatine 2010-02-08T13:55:18Z 2010-02-08T22:07:25Z <p>I find myself needing to process network traffic captured with <code>tcpdump</code>. Reading the traffic is not hard, but what gets a bit tricky is spotting where there are "spikes" in the traffic. I'm mostly concerned with TCP SYN packets and what I want to do is find days where there's a sudden rise in the traffic for a given destination port. There's quite a bit of data to process (roughly one year).</p> <p>What I've tried so far is to use an exponential moving average, this was good enough to let me get some interesting measures out, but comparing what I've seen with external data sources seems to be a bit too aggressive in flagging things as abnormal.</p> <p>I've considered using a combination of the exponential moving average plus historical data (possibly from 7 days in the past, thinking that there ought to be a weekly cycle to what I am seeing), as some papers I've read seem to have managed to model resource usage that way with good success.</p> <p>So, does anyone knows of a good method or somewhere to go and read up on this sort of thing.</p> <p>The moving average I've been using looks roughly like: </p> <pre><code>avg = avg+0.96*(new-avg) </code></pre> <p>With <code>avg</code> being the EMA and <code>new</code> being the new measure. I have been experimenting with what thresholds to use, but found that a combination of "must be a given factor higher than the average prior to weighing the new value in" and "must be at least 3 higher" to give the least bad result.</p> http://stackoverflow.com/questions/1334725/percentage-difference-between-two-text-files 3 percentage difference between two text files Mohamed 2009-08-26T13:34:15Z 2010-02-08T21:59:19Z <p>I know that I can use cmp, diff, etc to compare two files, but what I am looking for is a utility that gives me percentage difference between two files. </p> <p>if there is no such utility, any algorithm would do fine too. I have read about fuzzy programming, but I have not quite understand it.</p>