active questions tagged algorithm - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T09:55:31Z http://stackoverflow.com/feeds/tag/algorithm http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1629391/how-to-generate-a-unique-hash-for-a-url 2 How to generate a unique hash for a URL ? Jacques René Mesrine 2009-10-27T08:22:02Z 2009-12-12T09:52:50Z <p>Given these two images from twitter.</p> <pre><code>http://a3.twimg.com/profile_images/130500759/lowres_profilepic.jpg http://a1.twimg.com/profile_images/58079916/lowres_profilepic.jpg </code></pre> <p>I want to download them to local filesystem &amp; store them in a single directory. How shall I overcome name conflicts ?</p> <p>In the example above, I cannot store them as *lowres_profilepic.jpg*. My design idea is treat the URLs as opaque strings except for the last segment. What algorithms (implemented as <strong>f</strong>) can I use to hash the prefixes into unique strings.</p> <pre><code>f( "http://a3.twimg.com/profile_images/130500759/" ) = 6tgjsdjfjdhgf f( "http://a1.twimg.com/profile_images/58079916/" ) = iuhd87ysdfhdk </code></pre> <p>That way, I can save the files as:-</p> <pre><code>6tgjsdjfjdhgf_lowres_profilepic.jpg iuhd87ysdfhdk_lowres_profilepic.jpg </code></pre> <p>I don't want a cryptographic algorithm as it this needs to be a performant operation.</p> http://stackoverflow.com/questions/1890203/unique-for-arrays-in-javascript 0 unique() for arrays in javascript anonymous 2009-12-11T19:05:35Z 2009-12-12T09:33:19Z <p>As everybody knows there's no built-in function to remove the duplicates from an array in javascript. I've noticed this is also lacking in jQuery (which has a unique function for DOM selections only), and the most common snippet I found checks the entire array and a subset of it for each element (not very efficient I think), like:</p> <pre><code>for (var i = 0; i &lt; arr.length; i++) for (var j = i + 1; j &lt; arr.length; j++) if (arr[i] === arr[j]) //whatever </code></pre> <p>so I made my own:</p> <pre><code>function unique (arr) { var hash = {}, result = []; for (var i = 0; i &lt; arr.length; i++) if (!(arr[i] in hash)) { //it works with objects! in FF, at least hash[arr[i]] = true; result.push(arr[i]); } return result; } </code></pre> <p>I wonder if there's any other algorithm accepted as the best for this case (or if you see any obvious flaw that could be fixed), or, what do you do when you need this in javascript (I'm aware that jQuery is not the only framework and some others may have this already covered).</p> http://stackoverflow.com/questions/1838934/checking-for-odd-cycles-in-an-undirected-graph 2 Checking for odd cycles in an undirected graph ludicolo 2009-12-03T10:06:29Z 2009-12-12T06:10:31Z <p>Hello, I'm back with another similar question. I am currently working on a Java program that will check if a graph is 2-colorable, i.e. if it contains no odd cycles (cycles of odd number length). The entire algorithm is supposed to run in O(V+E) time (V being all vertices and E being all edges in the graph). My current algorithm does a Depth First Search, recording all vertices in the path it takes, then looks for a back edge, and then records between which vertices the edge is between. Next it traces a path from one end of the back edge until it hits the other vertex on the other end of the edge, thus retracing the cycle that the back edge completes.</p> <p>I was under the impression that this kind of traversing could be done in O(V+E) time for all cycles that exist in my graph, but I must be missing something, because my algorithm is running for a ridiculously long time for very large graphs (10k nodes, no idea how many edges).</p> <p>Is my algorithm completely wrong? And if so, can anyone point me in the right direction for a better way to record these cycles or possibly tell if they have odd numbers of vertices? Thanks for any and all help you guys can give. Code is below if you need it.</p> <p>Addition: Sorry I forgot, if the graph is not 2-colorable, I need to provide an odd cycle that proves that it is not.</p> <pre><code>package algorithms311; import java.util.*; import java.io.*; public class CS311 { public static LinkedList[] DFSIter(Vertex[] v) { LinkedList[] VOandBE = new LinkedList[2]; VOandBE[0] = new LinkedList(); VOandBE[1] = new LinkedList(); Stack stack = new Stack(); stack.push(v[0]); v[0].setColor("gray"); while(!stack.empty()) { Vertex u = (Vertex) stack.peek(); LinkedList adjList = u.getAdjList(); VOandBE[0].add(u.getId()); boolean allVisited = true; for(int i = 0; i &lt; adjList.size(); i++) { if(v[(Integer)adjList.get(i)].getColor().equals("white")) { allVisited = false; break; } else if(v[(Integer)adjList.get(i)].getColor().equals("gray") &amp;&amp; u.getPrev() != (Integer)adjList.get(i)) { int[] edge = new int[2]; //pair of vertices edge[0] = u.getId(); //from u edge[1] = (Integer)adjList.get(i); //to v VOandBE[1].add(edge); } } if(allVisited) { u.setColor("black"); stack.pop(); } else { for(int i = 0; i &lt; adjList.size(); i++) { if(v[(Integer)adjList.get(i)].getColor().equals("white")) { stack.push(v[(Integer)adjList.get(i)]); v[(Integer)adjList.get(i)].setColor("gray"); v[(Integer)adjList.get(i)].setPrev(u.getId()); break; } } } } return VOandBE; } public static void checkForTwoColor(String g) { //input is a graph formatted as assigned String graph = g; try { // --Read First Line of Input File // --Find Number of Vertices FileReader file1 = new FileReader("W:\\Documents\\NetBeansProjects\\algorithms311\\src\\algorithms311\\" + graph); BufferedReader bReaderNumEdges = new BufferedReader(file1); String numVertS = bReaderNumEdges.readLine(); int numVert = Integer.parseInt(numVertS); System.out.println(numVert + " vertices"); // --Make Vertices Vertex vertex[] = new Vertex[numVert]; for(int k = 0; k &lt;= numVert - 1; k++) { vertex[k] = new Vertex(k); } // --Adj Lists FileReader file2 = new FileReader("W:\\Documents\\NetBeansProjects\\algorithms311\\src\\algorithms311\\" + graph); BufferedReader bReaderEdges = new BufferedReader(file2); bReaderEdges.readLine(); //skip first line, that's how many vertices there are String edge; while((edge = bReaderEdges.readLine()) != null) { StringTokenizer ST = new StringTokenizer(edge); int vArr[] = new int[2]; for(int j = 0; ST.hasMoreTokens(); j++) { vArr[j] = Integer.parseInt(ST.nextToken()); } vertex[vArr[0]-1].addAdj(vArr[1]-1); vertex[vArr[1]-1].addAdj(vArr[0]-1); } LinkedList[] l = new LinkedList[2]; l = DFSIter(vertex);//DFS(vertex); System.out.println(l[0]); for(int i = 0; i &lt; l[1].size(); i++) { int[] j = (int[])l[1].get(i); System.out.print(" [" + j[0] + ", " + j[1] + "] "); } LinkedList oddCycle = new LinkedList(); boolean is2Colorable = true; //System.out.println("iterate through list of back edges"); for(int i = 0; i &lt; l[1].size(); i++) { //iterate through the list of back edges //System.out.println(i); int[] q = (int[])(l[1].get(i)); // q = pair of vertices that make up a back edge int u = q[0]; // edge (u,v) int v = q[1]; LinkedList cycle = new LinkedList(); if(l[0].indexOf(u) &lt; l[0].indexOf(v)) { //check if u is before v for(int z = l[0].indexOf(u); z &lt;= l[0].indexOf(v); z++) { //if it is, look for u first; from u to v cycle.add(l[0].get(z)); } } else if(l[0].indexOf(v) &lt; l[0].indexOf(u)) { for(int z = l[0].indexOf(v); z &lt;= l[0].indexOf(u); z++) { //if it is, look for u first; from u to v cycle.add(l[0].get(z)); } } if((cycle.size() &amp; 1) != 0) { //if it has an odd cycle, print out the cyclic nodes or write them to a file is2Colorable = false; oddCycle = cycle; break; } } if(!is2Colorable) { System.out.println("Graph is not 2-colorable, odd cycle exists"); if(oddCycle.size() &lt;= 50) { System.out.println(oddCycle); } else { try { BufferedWriter outFile = new BufferedWriter(new FileWriter("W:\\Documents\\NetBeansProjects\\algorithms311\\src\\algorithms311\\" + graph + "OddCycle.txt")); String cyc = oddCycle.toString(); outFile.write(cyc); outFile.close(); } catch (IOException e) { System.out.println("Could not write file"); } } } } catch (IOException e) { System.out.println("Could not open file"); } System.out.println("Done!"); } public static void main(String[] args) { //checkForTwoColor("smallgraph1"); //checkForTwoColor("smallgraph2"); //checkForTwoColor("smallgraph3"); //checkForTwoColor("smallgraph4"); checkForTwoColor("smallgraph5"); //checkForTwoColor("largegraph1"); } } </code></pre> <p>Vertex class</p> <pre><code>package algorithms311; import java.util.*; public class Vertex implements Comparable { public int id; public LinkedList adjVert = new LinkedList(); public String color = "white"; public int dTime; public int fTime; public int prev; public boolean visited = false; public Vertex(int idnum) { id = idnum; } public int getId() { return id; } public int compareTo(Object obj) { Vertex vert = (Vertex) obj; return id-vert.getId(); } @Override public String toString(){ return "Vertex # " + id; } public void setColor(String newColor) { color = newColor; } public String getColor() { return color; } public void setDTime(int d) { dTime = d; } public void setFTime(int f) { fTime = f; } public int getDTime() { return dTime; } public int getFTime() { return fTime; } public void setPrev(int v) { prev = v; } public int getPrev() { return prev; } public LinkedList getAdjList() { return adjVert; } public void addAdj(int a) { //adds a vertex id to this vertex's adj list adjVert.add(a); } public void visited() { visited = true; } public boolean wasVisited() { return visited; } } </code></pre> http://stackoverflow.com/questions/1892101/whats-the-best-way-for-such-strings-match 0 What's the best way for such strings match? arsane 2009-12-12T02:54:39Z 2009-12-12T04:57:38Z <p>I want to analyze a message's type for best performance, the message is begin with constant string and one space followed. The constant strings belongs to one known list of string array, like "CUT", "GET", "LOGIN" ... </p> <p>So I do not like to memcmp(data, "GET", 3) thing repeatedly which is bad for performance. I wonder is there any better solution. Maybe I can compile this constant string arrays into a DFA for quick string match, but I do not know how to do it, and is there any other better solution?</p> <p>Possible use lexer to do this?</p> http://stackoverflow.com/questions/298301/roulette-wheel-selection-algorithm 1 Roulette wheel selection algorithm swati 2008-11-18T09:56:00Z 2009-12-12T04:51:08Z <p>Can anyone provide some pseudo code for a roulette selection function? How would I implement this: I don't really understand how to read this math notation.I want General algorithm to this.</p> http://stackoverflow.com/questions/1891937/whats-the-difference-between-combinatorial-and-numerical-problems 0 What's the difference between combinatorial and numerical problems Julian 2009-12-12T01:48:04Z 2009-12-12T02:01:33Z <p>Could you please give at least two examples of each. Thanks.</p> http://stackoverflow.com/questions/1891404/how-do-you-create-an-english-like-word 8 How do you create an english like word? esac 2009-12-11T22:52:14Z 2009-12-12T01:53:34Z <p>How do you create words which are not part of the english language, but sound english? For example: janertice, bellagom</p> http://stackoverflow.com/questions/1891506/comparison-sorting-algorithm-complexity 1 Comparison Sorting Algorithm Complexity JC 2009-12-11T23:17:48Z 2009-12-11T23:29:38Z <p>Why is the lower bound for the time complexity of comparison-based sort algorithms O(n log n)?</p> http://stackoverflow.com/questions/1667310/combined-area-of-overlapping-circles 52 Combined area of overlapping circles Anton Hansson 2009-11-03T13:22:02Z 2009-12-11T22:45:03Z <p>I recently came across a problem where I had four circles (midpoints and radius) and had to calculate the area of the union of these circles.</p> <p>Example image:</p> <p><img src="http://img204.imageshack.us/img204/1707/many.png" /></p> <p>For two circles it's quite easy,</p> <p><img src="http://img39.imageshack.us/img39/862/twov.png" /></p> <p>I can just calculate the fraction of the each circles area that is not within the triangles and then calculate the area of the triangles.</p> <p>But is there a clever algorithm I can use when there is more than two circles?</p> http://stackoverflow.com/questions/1885591/mark-the-top-n-elements-of-an-unsorted-array 0 Mark the top N elements of an unsorted array. Tordek 2009-12-11T03:17:07Z 2009-12-11T22:40:40Z <p>I have an unsorted array (of generated die rolls), and I want to select the top N elements of it (which is trivial with sort-and-snip), but mark them while keeping them in order.</p> <p>E.g.:</p> <pre><code>mark([1,2,3,4], 3) ==&gt; [[1, false], [2, true], [3, true], [4, true]] mark([3,5,2,6,2], 3) ==&gt; [[3, true], [5, true], [2, false], [6, true], [2, false]] </code></pre> <p>The array may contain any values from 1 up, and be of any length, and the amount of marked elements is variable.</p> <p>I could live with</p> <pre><code>mark([3,5,2,6,2], 3) ==&gt; [[3, true], [5, true], 2, [6, true], [2, true]] </code></pre> <p>(I.e., numbers that'd be marked false to go unmarked), but I'd rather avoid it.</p> <p>What's mandatory is that the order of the array stays unchanged.</p> <p>If the top elements are repeated (eg: top 3 of [6,6,6,6,6,6]), mark the first 3 elements.</p> <p>(N is sufficiently small for complexity not to matter much.)</p> <p>EDIT: Bonus point: add a parameter to switch between "top" and "bottom" mode.</p> http://stackoverflow.com/questions/1891165/optimized-indexed-array-search-for-greater-than-number 1 optimized indexed array search for greater-than number jedierikb 2009-12-11T22:05:33Z 2009-12-11T22:27:28Z <p>I have an array of sorted numbers:</p> <pre><code>pts = [ 0, 4, 25, 51, 72, 100 ] </code></pre> <p>Given value T, I need to find the index of the first number in the array greater than T.</p> <pre><code>if T = 2, then the correct index is 1 for value 4 </code></pre> <p><em>dumb solution</em></p> <p>I can do this with a linear search, but would like to optimize.</p> <p><em>not working solution</em></p> <p>Binary search algorithm examples find the index of an <strong>exact</strong> number..</p> <p>Is there a suggested technique to solve this sort of search problem? Thanks!</p> http://stackoverflow.com/questions/1886642/how-to-win-this-game 3 How to win this game? ZelluX 2009-12-11T08:34:47Z 2009-12-11T18:41:19Z <p>Support we have an n * m table, and two players play this game. They rule out cells <strong>in turn</strong>. A player can choose a cell (i, j) and rule out all the cells from (i,j) to (n, m), and who rules out the last cell <strong>loses</strong> the game. </p> <p>For example, on a 3*5 board, player 1 rules out cell (3,3) to (3,5), and player 2 rules out (2,5) to (3,5), current board is like this: (O means the cell is not ruled out while x mean it is ruled out)</p> <pre><code>3 O O x x x 2 O O O O x 1 O O O O O 1 2 3 4 5 </code></pre> <p>and after player 1 rules out cells from (2,1) to (3,5), the board becomes</p> <pre><code>3 x x x x x 2 x x x x x 1 O O O O O 1 2 3 4 5 </code></pre> <p>Now player 2 rules out cells from (1,2) to (3,5), which leaves only (1,1) clean:</p> <pre><code>3 x x x x x 2 x x x x x 1 O x x x x 1 2 3 4 5 </code></pre> <p>So player 1 has to rules out the only (1,1) cell, since one player has to rule out at least one cell in a turn, and he loses the game.</p> <p>It is clearly that in n*n, 1*n, and 2*n (n >= 2) cases, the one who plays the first wins.</p> <p>My problem is that, is there any strategy for a player to win the game in all cases? Should he plays first?</p> <p>P.S</p> <p>I think it is related to strategies like dynamic programming or divide-and-conquer, but has not come to an idea yet. So I post it here.</p> <p><strong>The answer</strong></p> <p>Thanks to <a href="http://en.wikipedia.org/wiki/Chomp" rel="nofollow" title="sdcwc's link">sdcwc's link</a>. For tables bigger than 1*1, the first player will win. The proof is follow: (borrowed from the wiki page)</p> <blockquote> <p>It turns out that for any rectangular starting position bigger than 1 × 1 the 1st player can win. This can be shown using a strategy-stealing argument: assume that the 2nd player has a winning strategy against any initial 1st player move. Suppose then, that the 1st player takes only the bottom right hand square. By our assumption, the 2nd player has a response to this which will force victory. But if such a winning response exists, the 1st player could have played it as his first move and thus forced victory. The 2nd player therefore cannot have a winning strategy.</p> </blockquote> <p>And <a href="http://tiny.cc/CJTrv" rel="nofollow" title="Zermelo's theorem">Zermelo's theorem</a> ensures the existence of such a winning strategy.</p> http://stackoverflow.com/questions/1885636/algorithm-for-assigning-a-unique-series-of-bits-for-each-user 2 Algorithm for assigning a unique series of bits for each user? Mark 2009-12-11T03:34:48Z 2009-12-11T18:17:52Z <p>The problem seems simple at first: just assign an id and represent that in binary. </p> <p>The issue arises because the user is capable of changing as many 0 bits to a 1 bit. To clarify, the hash could go from 0011 to 0111 or 1111 but never 1010. Each bit has an equal chance of being changed and is independent of other changes.</p> <p>What would you have to store in order to go from hash -> user assuming a low percentage of bit tampering by the user? I also assume failure in some cases so the correct solution should have an acceptable error rate.</p> <p>I would an estimate the maximum number of bits tampered with would be about 30% of the total set.</p> <p>I guess the acceptable error rate would depend on the number of hashes needed and the number of bits being set per hash.</p> <p>I'm worried with enough manipulation the id can not be reconstructed from the hash. The question I am asking I guess is what safe guards or unique positioning systems can I use to ensure this happens.</p> http://stackoverflow.com/questions/1886096/complex-pathing-route 1 Complex pathing route WedTM 2009-12-11T06:02:52Z 2009-12-11T15:53:57Z <pre><code> L-&gt;| A -&gt; B ^ | |__&gt; C -&gt; D-&gt; G-&gt;X--| | K |_&gt; T | |_&gt;Z |___________| </code></pre> <p>I hope this small drawing helps convey what I'm trying to do.</p> <p>I have a list of 7,000 locations, each with an undefined, but small number of doors. Each door is a bridge between both locations.</p> <p>Referencing the diagram above, how would I go about finding the quickest route through the doors to get from A to Z?</p> <p>I don't need full on source, just psuedo code would be fine.</p> <p>Obviously you can take A -> B ->C -> D -> G -> X -> L -> Z, but the shortest route is A -> B -> C -> K -> X -> Z.</p> http://stackoverflow.com/questions/1888765/merge-several-regexes-to-a-single-one 5 Merge several regexes to a single one Jazz 2009-12-11T15:22:32Z 2009-12-11T15:31:22Z <p>I have several regexes (actually several thousands), and I must check if one string matches any of these regexes. It is not very efficient, so I would like to merge all these regexes as a single regex.</p> <p>For example, if a have these regexes:</p> <ul> <li>'foo *bar'</li> <li>'foo *zip'</li> <li>'zap *bar'</li> </ul> <p>I would like to obtain something like 'foo *(bar|zip)|zap *bar'.</p> <p>Is there some algorithm, library or tool to do this?</p> http://stackoverflow.com/questions/1527136/is-quicksort-a-potential-security-risk 6 Is Quicksort a potential security risk? Dario 2009-10-06T18:00:53Z 2009-12-11T15:14:30Z <p>I just wondered whether (with some serious paranoia and under certain circumstances) the use of the <em>QuickSort</em> algorithm can be seen as a security risk in an application.</p> <p>Both its basic implementation and improved versions like 3-median-quicksort have the peculiarity of behaving deviant for certain input data, which means that their runtime can increase extremely in these cases (having <em><code>O(n^2)</code></em> complexity) not to mention the possibility of a stackoverflow.</p> <p>Hence I would see potential to do harm by providing pre-sorted data to a programm that causes the algorithm to behave like this, which could have unpredictable consequences for e.g. a multi-client web application.</p> <p>Is this strange case worth any security consideration (and would therefore force us to use <em>Intro-</em> or <em>Mergesort</em> instead)?</p> <p>Edit: <strong>I know that there are ways to prevent Quicksort's worst cases, but what about language integrated sorts (like the 3-Median of .NET). Would they be taboo?</strong></p> http://stackoverflow.com/questions/1882042/faster-math-algorithm-sacrificing-accuracy 8 Faster math algorithm sacrificing accuracy grayger 2009-12-10T16:07:41Z 2009-12-11T14:22:39Z <p>Hi, I am developing a game that calls so many math functions for physics and rendering. <a href="http://en.wikipedia.org/wiki/Fast%5Finverse%5Fsquare%5Froot" rel="nofollow">"Fast inverse sqrt"</a> used in Quake3 is known to be faster than sqrt() and its background is beautiful. </p> <p>Do you know any other algorithm that is faster than usual one with acceptable accuracy loss? </p> http://stackoverflow.com/questions/1877735/encryption-algorithms 4 Encryption algorithms... paul 2009-12-09T23:37:51Z 2009-12-11T09:33:41Z <p>Would someone recommend a good book on data encryption algorithms? I would like one that has the math theory as well as some code examples.</p> http://stackoverflow.com/questions/1881995/how-to-convert-a-character-to-7-bit-even-parity-in-php 2 how to convert a character to 7 bit even parity in php Nidhin Baby 2009-12-10T15:59:57Z 2009-12-11T03:06:08Z <p>I want to convert a Character to a 7 bit even parity. Can you please suggest me, how to implement this?</p> http://stackoverflow.com/questions/1885023/recommendation-sought-for-basic-string-difference-algorithm 1 Recommendation sought for basic string difference algorithm kujawk 2009-12-11T00:13:32Z 2009-12-11T00:35:12Z <p>Hello,</p> <p>I'm looking for an algorithm that takes as arguments two strings, source and destination, and returns the steps required to transform the source string to the destination. Something that takes Levenshtein distance one step farther.</p> <p>E.g.,</p> <p>Input: source "abc", dest "abbc"<br> Output: insert 'b' at position 1 in source</p> <p>Input: source "abc", dest "ac"<br> Output: delete 'b' at position 1 in source</p> <p>Thanks very much.</p> http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi 37 Fastest way to get value of pi Chris Jester-Young 2008-08-01T05:21:22Z 2009-12-10T23:25:27Z <p>Solutions welcome in any language. :-) I'm looking for the fastest way to obtain the value of pi, as a personal challenge. More specifically I'm using ways that don't involve using <code>#define</code>d constants like <code>M_PI</code>, or hard-coding the number in.</p> <p>The program below tests the various ways I know of. The inline assembly version is, in theory, the fastest option, though clearly not portable; I've included it as a baseline to compare the other versions against. In my tests, with built-ins, the <code>4 * atan(1)</code> version is fastest on GCC 4.2, because it auto-folds the <code>atan(1)</code> into a constant. With <code>-fno-builtin</code> specified, the <code>atan2(0, -1)</code> version is fastest.</p> <p>Here's the main testing program (<code>pitimes.c</code>):</p> <pre><code>#include &lt;math.h&gt; #include &lt;stdio.h&gt; #include &lt;time.h&gt; #define ITERS 10000000 #define TESTWITH(x) { \ diff = 0.0; \ time1 = clock(); \ for (i = 0; i &lt; ITERS; ++i) \ diff += (x) - M_PI; \ time2 = clock(); \ printf("%s\t=&gt; %e, time =&gt; %f\n", #x, diff, diffclock(time2, time1)); \ } static inline double diffclock(clock_t time1, clock_t time0) { return (double) (time1 - time0) / CLOCKS_PER_SEC; } int main() { int i; clock_t time1, time2; double diff; /* Warmup. The atan2 case catches GCC's atan folding (which would * optimise the ``4 * atan(1) - M_PI'' to a no-op), if -fno-builtin * is not used. */ TESTWITH(4 * atan(1)) TESTWITH(4 * atan2(1, 1)) #if defined(__GNUC__) &amp;&amp; (defined(__i386__) || defined(__amd64__)) extern double fldpi(); TESTWITH(fldpi()) #endif /* Actual tests start here. */ TESTWITH(atan2(0, -1)) TESTWITH(acos(-1)) TESTWITH(2 * asin(1)) TESTWITH(4 * atan2(1, 1)) TESTWITH(4 * atan(1)) return 0; } </code></pre> <p>And the inline assembly stuff (<code>fldpi.c</code>), noting that it will only work for x86 and x64 systems:</p> <pre><code>double fldpi() { double pi; asm("fldpi" : "=t" (pi)); return pi; } </code></pre> <p>And a build script that builds all the configurations I'm testing (<code>build.sh</code>):</p> <pre><code>#!/bin/sh gcc -O3 -Wall -c -m32 -o fldpi-32.o fldpi.c gcc -O3 -Wall -c -m64 -o fldpi-64.o fldpi.c gcc -O3 -Wall -ffast-math -m32 -o pitimes1-32 pitimes.c fldpi-32.o gcc -O3 -Wall -m32 -o pitimes2-32 pitimes.c fldpi-32.o -lm gcc -O3 -Wall -fno-builtin -m32 -o pitimes3-32 pitimes.c fldpi-32.o -lm gcc -O3 -Wall -ffast-math -m64 -o pitimes1-64 pitimes.c fldpi-64.o -lm gcc -O3 -Wall -m64 -o pitimes2-64 pitimes.c fldpi-64.o -lm gcc -O3 -Wall -fno-builtin -m64 -o pitimes3-64 pitimes.c fldpi-64.o -lm </code></pre> <p>Apart from testing between various compiler flags (I've compared 32-bit against 64-bit too, because the optimisations are different), I've also tried switching the order of the tests around. The <code>atan2(0, -1)</code> version still comes out top every time, though.</p> <p>I'm keen to hear what results you have, as well as improvements to the testing process. :-)</p> http://stackoverflow.com/questions/1880543/how-to-sort-an-array-which-is-mostly-sorted 2 how to sort an array which is mostly sorted behrooz 2009-12-10T12:06:23Z 2009-12-10T22:52:30Z <p>i have an array like this:<br> 1,2,3,5,6,4 it is 99% sorted and has 40K elements.<br> i can put them in an array, list, linked list, ...<br> but i don`t know the fastest way to sort them!</p> http://stackoverflow.com/questions/1883477/application-of-artificial-intelligence-in-semantic-web 0 Application of Artificial Intelligence in Semantic Web Richard Knop 2009-12-10T19:45:53Z 2009-12-10T22:46:55Z <p>Hello,</p> <p>I need to write an essay or a research for the subject Artificial Intelligence. There are many possible topics I can choose from plus we are also allowed to write about any other topic of interest.</p> <p>One of the topics is Semantic Web. I would like to write about use of AI algorithms in relation with Semantic Web.</p> <p>Could you please suggest me some good topics from this area?</p> <p>Is PageRank a good topic? Is it related enough to both Semantic Web and AI?</p> http://stackoverflow.com/questions/1866684/is-there-an-algorithm-which-prints-out-a-shuffled-list-without-actually-modifing 4 Is there an algorithm which prints out a shuffled list without actually modifing the list? Vilx- 2009-12-08T12:37:28Z 2009-12-10T22:36:54Z <p>After reading <a href="http://stackoverflow.com/questions/1866533/returning-items-randomly-from-a-collection">this question</a> I started to wonder: is it possible to have a shuffling algorithm which does not modify or copy the original list?</p> <p>To make it clear:</p> <p>Imagine you are given a list of objects. The list size can be arbitrary, but assume it's pretty large (say, 10,000,000 items). You need to print out the items of the list in random order, and you need to do it as fast as possible. However, you should not:</p> <ul> <li>Copy the original list, because it's very large and copying would waste a LOT of memory (probably hitting the limits of available RAM);</li> <li>Modify the original list, because it's sorted in some way and some other part later on depends on it being sorted.</li> <li>Create an index list, because, again, the list is very large and copying takes all too much time and memory. (Clarification: this is meant any other list, which has the same number of elements as the original list).</li> </ul> <p>Is this possible?</p> <p><strong>Added:</strong> More clarifications.</p> <ol> <li>I want the list to be shuffled in true random way with all permutations equally likely (of course, assuming we have a proper Rand() function to start with).</li> <li>Suggestions that I make a list of pointers, or a list of indices, or any other list that would have the same number of elements as the original list, is explicitly deemed as inefficient by the original question. You can create additional lists if you want, but they should be serious orders of magnitude smaller than the original list.</li> <li>The original list is like an array, and you can retrieve any item from it by its index in O(1). (So no doubly-linked list stuff, where you have to iterate through the list to get to your desired item.)</li> </ol> <p><strong>Added 2</strong>: OK, let's put it this way: You have a 1TB HDD filled with data items, each 512 bytes large (a single sector). You want to copy all this data to another 1TB HDD while shuffling all the items. You want to do this as fast as possible (single pass over data, etc). You have 512MB of RAM available, and don't count on swap. (This is a theoretical scenario, I don't have anything like this in practice. I just want to find the perfect algorithm.item.)</p> http://stackoverflow.com/questions/1609550/looking-for-an-efficient-data-structure-to-do-a-quick-searches 1 looking for an efficient data structure to do a quick searches Andrei 2009-10-22T19:49:49Z 2009-12-10T21:16:06Z <p>I have a list of elements around 1000. Each element (objects that i read from the file, hence i can arrange them efficiently at the beginning) containing contains 4 variables. So now I am doing the following, which is very inefficient at grand scheme of things:</p> <pre><code>void func(double value1, double value2, double value3) { fooArr[1000]; for(int i=0;i&lt;1000; ++i) { //they are all numeric! ranges are &lt; 1000 if(fooArr[i].a== value1 &amp;&amp; fooArr[i].b &gt;= value2; &amp;&amp; fooArr[i].c &lt;= value2; //yes again value2 &amp;&amp; fooArr[i].d &lt;= value3; ) { /* yay found now do something!*/ } } } </code></pre> <p>Space is not too important!</p> <p><strong>MODIFIED per REQUEST</strong></p> http://stackoverflow.com/questions/1877425/prefix-to-infix-on-stack 2 prefix to infix on stack blid..pl 2009-12-09T22:37:43Z 2009-12-10T20:39:20Z <p>I'm trying to implement prefix to infix in c++, that's what i've got so far. The input should be for example something like this:</p> <pre><code>/7+23 </code></pre> <p>And the ouput:</p> <pre><code>7/(2+3) or (7/(2+3)) </code></pre> <p>But instead I get:</p> <pre><code>(/) </code></pre> <p>That's the code I wrote so far:</p> <pre><code>void pre_to_in(stack&lt;char&gt; eq) { if(nowe.empty() != true) { char test; test = eq.top(); eq.pop(); if(test == '+' || test == '-' || test == '/' || test == '*') { cout &lt;&lt; "("; pre_to_in(eq); cout &lt;&lt; test; pre_to_in(eq); cout &lt;&lt; ")"; } else { cout &lt;&lt; test; } } } // somewhere in main() char arr[30]; stack&lt;char&gt; stosik; int i = 0; cout &lt;&lt; "write formula in prefix notation\n"; cin &gt;&gt; arr; while(i &lt; strlen(arr)) { stosik.push(arr[i]); i++; } pre_to_in(stc); </code></pre> http://stackoverflow.com/questions/1484347/java-max-min-value-in-an-array 1 Java: Max/min value in an array? Rosarch 2009-09-27T20:07:56Z 2009-12-10T20:32:33Z <p>It's trivial to write a function to determine the min/max value in an array, such as:</p> <pre><code>/** * * @param chars * @return the max value in the array of chars */ private static int maxValue(char[] chars) { int max = chars[0]; for (int ktr = 0; ktr &lt; chars.length; ktr++) { if (chars[ktr] &gt; max) { max = chars[ktr]; } } return max; } </code></pre> <p>but isn't this already done somewhere?</p> http://stackoverflow.com/questions/1881609/finding-the-closest-number-in-a-random-set 1 Finding the closest number in a random set Andy Jacobs 2009-12-10T15:10:18Z 2009-12-10T19:48:43Z <p>Say I got a set of 10 random numbers between 0 and 100.</p> <p>An operator gives me also a random number between 0 and 100. Then I got to find the number in the set that is the closest from the number the operator gave me.</p> <h2>example</h2> <p>set = {1,10,34,39,69,89,94,96,98,100}</p> <p>operator number = 45</p> <p>return = 39</p> <p>And how do translate this into code? (javascript or something)</p> http://stackoverflow.com/questions/1883078/are-there-adaptive-replacement-cache-patent-free-alternatives 0 Are there Adaptive Replacement Cache patent-free alternatives? aleccolocco 2009-12-10T18:35:44Z 2009-12-10T19:05:23Z <p>An open source high-performance project I'm working on needs to keep a cache of parsed/compiled files. A plain <a href="http://en.wikipedia.org/wiki/Cache%5Falgorithms#Least%5FRecently%5FUsed" rel="nofollow">LRU</a> or a plain LFU wouldn't fit. Plain LRU wouldn't work as there will be remote batch/spider processes hitting the service regularly. Plain <a href="http://en.wikipedia.org/wiki/Cache%5Falgorithms#Least-Frequently%5FUsed" rel="nofollow">LFU</a> wouldn't work because content will age. <a href="http://en.wikipedia.org/wiki/Adaptive%5FReplacement%5FCache" rel="nofollow">ARC</a> seems like the perfect solution but since IBM holds patents to it <a href="http://www.varlena.com/GeneralBits/96.php" rel="nofollow">at least one open source project dropped it</a>.</p> <p>Are there any (good enough) alternatives?</p> <p>EDIT: I'm not looking for exactly the same thing, just something that could handle those two situations. Perhaps some simple strategy with timestamps and sources. There have to be many programmers who faced this situation before. That's why the "good enough" bit.</p> http://stackoverflow.com/questions/1881652/estimating-forecasting-download-completion-time 2 Estimating/forecasting download completion time Phil H 2009-12-10T15:15:37Z 2009-12-10T18:51:31Z <p>We've all poked fun at the 'X minutes remaining' dialog which seems to be too simplistic, but how can we improve it? </p> <p>Effectively, the input is the set of download speeds up to the current time, and we need to use this to estimate the completion time, perhaps with an indication of certainty, like '20-25 mins remaining' using some Y% confidence interval.</p> <p>Code that did this could be put in a little library and used in projects all over, so is it really that difficult? How would you do it? What weighting would you give to previous download speeds?</p> <p>Or is there some open source code already out there? </p>