User PeterAllenWebb - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T06:16:51Z http://stackoverflow.com/feeds/user/21365 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1848335/anything-better-than-bounding-boxes/1849882#1849882 0 Answer by PeterAllenWebb for anything better than bounding boxes? PeterAllenWebb 2009-12-04T21:52:16Z 2009-12-04T22:04:47Z <p>This quick-and-dirty approach may save you some grief: Divide the surface of the earth into 1 degree boxes. You will then have a 180x360 element array and you will only need to search a small number of boxes, including the box containing the new point and all the boxes immediately around it for which one of the corners is within the user-specified distance. You will find that there are some tricks you can use to quickly figure out what boxes to use without considering them all. Just don't forget latitude and longitude wrap-around.</p> <p>If your "only" have millions of points, and they aren't clustered into hot-spots, that might get you through.</p> <p>A theoretically superior way: You could map each point into three dimensional space and then store them in an <a href="http://en.wikipedia.org/wiki/Octree" rel="nofollow">octree</a>, which would let you quickly find nearby points to within an arbitrary distance. Of course, the distance in three-dimensional space will be slightly different than the great-circle distance on the globe, so you will have to calculate a conversion factor. That should be simple, though. You don't mention an implementation language, but there is almost certainly going to be a well-tested octree implementation for any language you are working in. If you don't mind inserting the third-party code, this solution is the way to go.</p> http://stackoverflow.com/questions/1830153/finding-elements-that-are-present-in-one-set-not-the-other/1830728#1830728 0 Answer by PeterAllenWebb for Finding elements that are present in one set not the other PeterAllenWebb 2009-12-02T04:53:29Z 2009-12-02T04:53:29Z <p>If you have access to a hash-set implementation (I believe Java, C#, and Python all have them), you can just construct two sets, A and B and take the set difference. If set difference isn't defined, you can just iterate over the elements of A and check to see if B has each one or not. A hash set is implemented with a hash table, so it can be constructed in linear time and membership can be tested in constant time. That means that the total time will be linear in the sum of the set sizes.</p> http://stackoverflow.com/questions/1829092/what-is-a-good-2d-graphics-framework-for-a-drawing-application/1829173#1829173 3 Answer by PeterAllenWebb for What is a good 2D graphics framework, for a drawing application? PeterAllenWebb 2009-12-01T21:49:06Z 2009-12-01T21:49:06Z <p>You don't mention if you want to make a vector editor or a raster editor. I'm assuming raster.</p> <p>If you don't have much graphics API experience, and just want to get something working as soon as possible, just go with GDI+. It is much simpler than WPF conceptually.</p> <p>Both GDI+ and WPF can do what you want. Working with WPF will probably give better performance because it uses Direct-X for acceleration. It also uses a stored-scene paradigm, which may make a lot of drawing operations conceptually simpler. The learning curve is much higher than GDI+, though.</p> <p>You could always use Open-GL, Direct-X, or unmanaged GDI. They all have good 2D performance. But you will have to make calls to unmanaged code.</p> http://stackoverflow.com/questions/1828949/shortest-path-algorithm/1829058#1829058 3 Answer by PeterAllenWebb for shortest path algorithm PeterAllenWebb 2009-12-01T21:30:03Z 2009-12-01T21:30:03Z <p>Since it sounds like you're looking for a graph algorithm, check out <a href="http://code.google.com/p/python-graph/" rel="nofollow">python-graph</a>. They claim their code implements Dijkstra's shortest-path algorithm. I don't understand the second comment you made, but if you need all-pairs shortest-path and you have the graph in adjacency matrix form, you can use the <a href="http://en.wikipedia.org/wiki/Floyd-Warshall%5Falgorithm" rel="nofollow">Floyd-Warshall</a> algorithm.</p> http://stackoverflow.com/questions/1827790/jquery-not-completely-removing-draggable-resizable/1827844#1827844 0 Answer by PeterAllenWebb for jQuery not completely removing draggable/resizable PeterAllenWebb 2009-12-01T18:02:37Z 2009-12-01T18:02:37Z <p>In the example you link to, you're creating two text areas with the same id. There is probably some drag-drop code that assumes that each element in the page has a unique id attribute. And in fact each element should.</p> http://stackoverflow.com/questions/1827406/how-much-does-the-order-of-case-labels-affect-the-efficiency-of-switch-statements/1827457#1827457 7 Answer by PeterAllenWebb for How much does the order of case labels affect the efficiency of switch statements? PeterAllenWebb 2009-12-01T16:49:25Z 2009-12-01T16:59:50Z <p>Your conclusion regarding the if statements will not be true on most of the hardware I'm familiar with. The problem is not that you are jumping, but that you are branching. The code could go two different ways, depending on the result of a comparison. This can stall the pipeline on most modern CPUs. Branch prediction is common, and fixes the problem most of the time, but has nothing to do with your example. The predictor can equally well predict that a comparison will be false as it can that it will be true.</p> <p>As usual, see wikipedia: <a href="http://en.wikipedia.org/wiki/Branch%5Fpredictor" rel="nofollow">Branch Predictor</a></p> http://stackoverflow.com/questions/1817274/partition-a-sequence-of-2n-real-numbers-so-that/1822600#1822600 4 Answer by PeterAllenWebb for partition a sequence of 2n real numbers so that... PeterAllenWebb 2009-11-30T21:44:11Z 2009-11-30T22:29:26Z <p>The algorithm works because when x<sub>0</sub>, x<sub>1</sub>, ... x<sub>2n</sub> is the sorted list, there is always an optimal solution that contains (x<sub>0</sub>, x<sub>2n</sub>).</p> <p>Proof:</p> <p>Consider any optimal solution which does <em>not</em> contain (x<sub>0</sub>, x<sub>2n</sub>). It must contain pairs (x<sub>0</sub>, x<sub>a</sub>) and (x<sub>b</sub>, x<sub>2n</sub>) with x<sub>0</sub> ≤ x<sub>a</sub> ≤ x<sub>2n</sub> and x<sub>0</sub> ≤ x<sub>b</sub> ≤ x<sub>2n</sub>. Remove those pairs from the solution, and in their place put (x<sub>0</sub>, x<sub>2n</sub>) and (x<sub>a</sub>, x<sub>b</sub>). Could the presence of either new pair have "damaged" the solution? The pair (x<sub>0</sub>, x<sub>2n</sub>) could not have, since its sum is less than or equeal to the sum of (x<sub>b</sub>, x<sub>2n</sub>) which was a member of the original, optimal solution. Neither again could (x<sub>a</sub>, x<sub>b</sub>) have caused damage, since its sum is less than or equal to the sum of (x<sub>b</sub>, x<sub>2n</sub>), which was a member of the same solution. We have constructed an optimal solution which <em>does</em> contain (x<sub>0</sub>, x<sub>2n</sub>).</p> <p>Thus the algorithm you give never forecloses the possibility of finding an optimal solution at any step, and when there are only two values left to pair they must be paired together.</p> http://stackoverflow.com/questions/1821238/embed-a-system-string-in-xaml/1821288#1821288 1 Answer by PeterAllenWebb for Embed a System.String in XAML PeterAllenWebb 2009-11-30T17:47:51Z 2009-11-30T17:47:51Z <p>Having a reference to the string will not allow you to change it later, since strings are immutable, so as Yacoder suggests, just put it in the <code>&lt;Window.Resources&gt;</code> section. Something like:</p> <pre><code>&lt;Window.Resources&gt; &lt;System:String x:Key="TestString"&gt;Test&lt;/System:String&gt; &lt;/Window.Resources&gt; </code></pre> <p>If you need to be able to change the value of the string that appears in your grid, you'll want to use a TextBlock or other control whose Content property can be set.</p> http://stackoverflow.com/questions/1771750/optimal-way-for-partitioning-a-cell-based-shape-into-a-minimal-amount-of-rectangl/1799008#1799008 1 Answer by PeterAllenWebb for Optimal way for partitioning a cell based shape into a minimal amount of rectangles PeterAllenWebb 2009-11-25T18:28:38Z 2009-11-26T13:52:28Z <p>I really got stuck thinking about this problem, so I looked into the published research. It turns out that if you want an optimal solution, this is a pretty hard problem to solve efficiently (NP-Hard if you want to be technical). Check out the paper "An Algorithm for Covering Polygons with Rectangles" in Information and Control if you don't want to take my word for it. There are a lot of interesting ideas in the paper, and the authors give an algorithm for finding optimal coverings. Obviously it doesn't run in polynomial time, but it may be fast enough for problem instances your size. You might even want to try an even simpler exhaustion technique first to see if it works for the problems you're interested in. </p> <p>Here's my original suggestion, which I will no longer vouch for being optimal, though a counterexample hasn't ocurred to me yet:</p> <p>Start with an empty collection of rectangles called R. For each position (i,j) in your array with a value of 1, find the widest rectangle W of 1s that contains (i,j), and add then extend W to the rectangle M of maximum height that will contain all 1s. Add M to the collection R if it is not present. After you finish, make a pass over R and remove any rectangle that is completely covered by the other rectangles in R.</p> http://stackoverflow.com/questions/1794600/how-atomic-is-the-berkeley-db-usage/1794888#1794888 1 Answer by PeterAllenWebb for How atomic is the Berkeley DB usage? PeterAllenWebb 2009-11-25T05:38:53Z 2009-11-25T05:50:06Z <p>No good database system (a category that includes Berkley DB) could be interrupted in the manner you suggest, with a value partially updated. When you press control-c you cannot interrupt the CPU mid-instruction. There is always some level of granularity to the interruption, and well-written databases take advantage of that fact to guard against the database ever being in an inconsistent state.</p> <p>The potential for data corruption and loss exists when the power goes out, but the details of whether or not data would be lost or corrupted have more to do with the filesystem on which the database files are stored. A good journaling filesystem, for instance, writes what it is going to do in a "journal" then does it, then writes in the journal that it did it. So if it looses power during a write operation, for instance, it looks at its journal to see if there is anything it needs to finish before allowing access to the filesystem. This is an over-simplification, but you can get the details by checking out ext3 on wikipedia, for example.</p> http://stackoverflow.com/questions/1787470/tic-tac-toe-help/1790685#1790685 0 Answer by PeterAllenWebb for Tic Tac Toe help PeterAllenWebb 2009-11-24T15:10:17Z 2009-11-24T15:10:17Z <p>Your evaluation should rate winning game states more highly when there are fewer moves taken. This should be pretty easy to implement. Let's say you usually assign all winning game states a value of 100. For a size 9 board, just add the quantity (9 - turns) to this. So a winning board after 8 turns would evaluate to 101 and a winning board after 5 turns would evaluate to 104.</p> http://stackoverflow.com/questions/1684502/deriving-a-state-machine-from-a-bnf-grammar/1684532#1684532 3 Answer by PeterAllenWebb for Deriving a state machine from a BNF grammar PeterAllenWebb 2009-11-06T00:03:44Z 2009-11-06T00:03:44Z <p>In general, it is not possible to create a state machine for grammars that can be represented in BNF. State machines can only recognize regular languages and BNF can specify context-free languages. Yacc can create parsers. Would that be sufficient?</p> http://stackoverflow.com/questions/1683241/iterating-over-subsets-of-any-size/1683987#1683987 0 Answer by PeterAllenWebb for Iterating over subsets of any size PeterAllenWebb 2009-11-05T22:09:40Z 2009-11-05T22:09:40Z <p>Many many ways are described in more detail than anyone should require in Donald Knuth's <a href="http://rads.stackoverflow.com/amzn/click/0201853930" rel="nofollow">recent addition to The Art of Computer Programming</a>.</p> http://stackoverflow.com/questions/1667310/combined-area-of-overlapping-circles/1669468#1669468 1 Answer by PeterAllenWebb for Combined area of overlapping circles PeterAllenWebb 2009-11-03T19:04:00Z 2009-11-03T19:04:00Z <p>Here's an algorithm that should be easy to implement in practice, and could be adjusted to produce arbitrarily small error:</p> <ol> <li>Approximate each circle by a regular polygon centered at the same point</li> <li>Calculate the polygon which is the union of the approximated circles</li> <li>Calculate the area of the merged polygon</li> </ol> <p>Steps 2 and 3 can be carried out using standard, easy-to-find algorithms from computational geometry.</p> <p>Obviously, the more sides you use for each approximating polygon, the closer to exact your answer would be. You could approximate using inscribed and circumscribed polygons to get bounds on the exact answer.</p> http://stackoverflow.com/questions/1648087/is-it-possible-to-play-synthesized-sound-in-the-browser-using-javascript 0 Is it possible to play synthesized sound in the browser using JavaScript? PeterAllenWebb 2009-10-30T05:01:50Z 2009-10-30T05:33:11Z <p>I just came across a <a href="http://benfirshman.com/projects/jsnes/" rel="nofollow">Nintendo emulator written entirely in JavaScript</a> on the interwebs, but it doesn't have sound. It got me thinking: Is there any way to synthesize sound in the browser using JavaScript and then play it? If it's not possible in general, then are there any Safari/Opera/FireFox/IE/Etc. extensions that would make it possible?</p> <p>I am not asking about techniques for synthesizing sound, just techniques for playing sounds that have been synthesized by code running in the browser.</p> http://stackoverflow.com/questions/174449/to-stl-or-stl-that-is-the-question/1632703#1632703 1 Answer by PeterAllenWebb for To STL or !STL, that is the question... PeterAllenWebb 2009-10-27T18:15:26Z 2009-10-27T18:15:26Z <p>Nobody has mentioned binary size yet. In situations where it is important to maintain the smallest binary executable size possible (embeded, etc.) you may not want to use STL.</p> http://stackoverflow.com/questions/1617861/inverse-fft-in-shader-language/1619934#1619934 2 Answer by PeterAllenWebb for inverse FFT in shader language? PeterAllenWebb 2009-10-25T03:36:44Z 2009-10-25T03:36:44Z <p>Do you already have a FFT implementation? You may already be aware, but the inverse can be computed by reversing the order of the N inputs, taking the FFT over those, and dividing the result by N.</p> http://stackoverflow.com/questions/1619836/c-random-number/1619896#1619896 1 Answer by PeterAllenWebb for C# Random Number PeterAllenWebb 2009-10-25T03:17:39Z 2009-10-25T03:17:39Z <p>It's likely in the scenario you describe that string operations are taking up as much or more time than the calls to Random.Next(). I have not tested the libraries, but converting the binary random-number to a decimal string is likely to be much slower than generating it. When you generate the string character-by-character this is even more likely to be the case.</p> <p>So consider retaining the number as an int if possible, and then converting only for display purposes.</p> http://stackoverflow.com/questions/1586858/find-the-smallest-integer-not-in-a-list 11 Find the Smallest Integer Not in a List PeterAllenWebb 2009-10-19T03:44:45Z 2009-10-23T22:31:28Z <p>An interesting interview question that a colleague of mine uses:</p> <p>Suppose that you are given a very long, unsorted list of unsigned 64-bit integers. How would you find the smallest non-negative integer that <em>does not</em> occur in the list?</p> <p>FOLLOW-UP: Now that the obvious solution by sorting has been proposed, can you do it faster than O(n log n)?</p> <p>FOLLOW-UP: Your algorithm has to run on a computer with, say, 1GB of memory</p> <p>CLARIFICATION: The list is in RAM, though it might consume a large amount of it. You are given the size of the list, say N, in advance.</p> http://stackoverflow.com/questions/1598703/profiling-dll-lib-bloat 3 Profiling DLL/LIB Bloat PeterAllenWebb 2009-10-21T04:21:28Z 2009-10-21T14:24:20Z <p>I've inherited a fairly large C++ project in VS2005 which compiles to a DLL of about 5MB. I'd like to cut down the size of the library so it loads faster over the network for clients who use it from a slow network share.</p> <p>I know how to do this by analyzing the code, includes, and project settings, but I'm wondering if there are any tools available which could make it easier to pinpoint what parts of the code are consuming the most space. Is there any way to generate a "profile" of the DLL layout? A report of what is consuming space in the library image and how much?</p> http://stackoverflow.com/questions/1598001/how-do-you-start-off-with-implementing-a-thread-library/1598043#1598043 0 Answer by PeterAllenWebb for How do you start off with implementing a thread library ? PeterAllenWebb 2009-10-21T00:09:56Z 2009-10-21T00:09:56Z <p>Check out a good Operating Systems text like <a href="http://rads.stackoverflow.com/amzn/click/0470128720" rel="nofollow">Operating Systems Concepts</a> for some good theoretical background. That's important.</p> <p>Check out <a href="http://rads.stackoverflow.com/amzn/click/0672327201" rel="nofollow">Robert Love's Excellent Book</a> about linux kernel programming for some good practical background. That may be even more important.</p> http://stackoverflow.com/questions/1597195/reward-for-editing-a-wiki-page/1597207#1597207 4 Answer by PeterAllenWebb for Reward for editing a wiki page PeterAllenWebb 2009-10-20T20:47:53Z 2009-10-20T20:47:53Z <p>This is a very difficult problem to solve mechanically. If your wiki is going to be large enough to have an active user-base which participates actively, consider allowing users to up-vote and down-vote each others changes. Sound familiar?</p> http://stackoverflow.com/questions/1595404/why-is-my-compiled-code-so-much-slower-on-windows-than-the-same-code-compiled-on/1595502#1595502 0 Answer by PeterAllenWebb for Why is my compiled code so much slower on Windows than the same code compiled on OSX? PeterAllenWebb 2009-10-20T15:32:17Z 2009-10-20T15:32:17Z <p>Are you compiling for Release or Debug? Have you enabled full optimization?</p> http://stackoverflow.com/questions/1595345/stop-controls-from-being-painted/1595393#1595393 1 Answer by PeterAllenWebb for Stop controls from being painted PeterAllenWebb 2009-10-20T15:18:18Z 2009-10-20T15:18:18Z <p>Yes. Remove them from (or better yet, never add them to) the UserControl's set of child controls. Simulating interaction with the controls is going to be a PITA, though.</p> <p>Do you just need the controls to "look" like they're there. Or do they need to actually be there? If its the latter, you would be better off faking the scrolling somehow by just repositioning the controls manually.</p> <p>Trying to re-invent the windowing system is an exercise in pain. You will be better off if you learn and work within its paradigms.</p> http://stackoverflow.com/questions/1592039/recursively-find-subsets/1592184#1592184 1 Answer by PeterAllenWebb for recursively find subsets PeterAllenWebb 2009-10-20T02:40:59Z 2009-10-20T02:40:59Z <p>I have been staring at this for several minutes and I can't figure out what your train of thought is for thinking that it <em>would</em> work. You are permanently removing several members of the input list before exploring every possible subset that they could participate in.</p> <p>Try working out the solution you intend in pseudo-code and see if you can see the problem without the stl interfering.</p> http://stackoverflow.com/questions/1581394/split-value-in-24-randomly-sized-parts-using-c/1583287#1583287 2 Answer by PeterAllenWebb for Split value in 24 randomly sized parts using C# PeterAllenWebb 2009-10-17T21:34:14Z 2009-10-19T23:55:26Z <p>I've calculated the average size of each of the 24 buckets over 100 trials for each of the algorithms proposed here. I thought it was interesting that three out of the four do seem to result in 20010/24 items per bucket on average, but the naive method I described converges to that average most quickly. This makes some intuitive sense to me. That method is something like snowing randomly on 24 buckets, and thus likely to result in buckets which are approximately equal in size. The others are more like hacking randomly at a length of wood.</p> <pre><code>Bevan: [751, 845, 809, 750, 887, 886, 838, 868, 837, 902, 841, 812, 818, 774, 815, 857, 752, 815, 896, 872, 833, 864, 769, 894] Gregory: [9633, 5096, 2623, 1341, 766, 243, 159, 65, 21, 19, 16, 4, 3, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2] mjv: [895, 632, 884, 837, 799, 722, 853, 749, 915, 756, 814, 863, 842, 642, 820, 805, 659, 862, 742, 812, 768, 816, 721, 940] peterallenwebb: [832, 833, 835, 829, 833, 832, 837, 835, 833, 827, 833, 832, 834, 833, 836, 833, 838, 834, 834, 833, 834, 832, 836, 830] </code></pre> <p>And here is the python code: import random</p> <pre><code>N = 20010; def mjv(): gaps = [ random.randrange(0, N) for i in range(0, 24) ] gaps = gaps + [0, N] gaps.sort() value = [ gaps[i+1] - gaps[i] for i in range(0, 24) ] return value def gregory(): values = [] remainingPortion = N for i in range(0, 23): val = random.randrange(1, remainingPortion - (23 - i)) remainingPortion = remainingPortion - val values.append(val) values.append(remainingPortion) return values def peterallenwebb(): values = [0 for i in range(0, 24) ] for i in range(0, N): k = random.randrange(0, 24) values[k] = values[k] + 1 return values def bevan(): values = []; sum = 0.0 for i in range(0, 24): k = random.random() sum = sum + k values.append(k); scaleFactor = N / sum for j in range(0, 24): values[j] = int(values[j] * scaleFactor) return values def averageBucketSizes(method): totals = [0 for i in range(0, 24)] trials = 100 for i in range(0,trials): values = method() for j in range(0, 24): totals[j] = totals[j] + values[j] for j in range(0, 24): totals[j] = totals[j] / trials return totals; print 'Bevan: ', averageBucketSizes(bevan) print 'Gregory: ', averageBucketSizes(gregory) print 'mjv: ', averageBucketSizes(mjv) print 'peterallenwebb: ', averageBucketSizes(peterallenwebb) </code></pre> <p>Let me know if you see any mistakes. I will re-run.</p> http://stackoverflow.com/questions/1581394/split-value-in-24-randomly-sized-parts-using-c/1581454#1581454 3 Answer by PeterAllenWebb for Split value in 24 randomly sized parts using C# PeterAllenWebb 2009-10-17T05:00:52Z 2009-10-17T05:06:29Z <p>If you want to be sure that you're not biasing the process without much analysis, you could just create a 24 element array, initialize each element to 0 and then add 1 to one of the elements at random 20010 times.</p> <p>It all depends on the kind of distributions you want to see, but I don't think any of the other techniques recommend so far will result in the hour-long "buckets" being statistically indistinguishable.</p> http://stackoverflow.com/questions/1574303/what-statistics-can-be-maintained-for-a-set-of-numerical-data-without-iterating/1576063#1576063 0 Answer by PeterAllenWebb for What statistics can be maintained for a set of numerical data without iterating? PeterAllenWebb 2009-10-16T01:48:50Z 2009-10-16T01:48:50Z <p>If you don't know the exact size of the dataset in advance, or if it is potentially unlmited, or you just want some ideas, you should definitely look into techniques used in <a href="http://en.wikipedia.org/wiki/Streaming%5Falgorithm" rel="nofollow">Streaming Algorithms</a>.</p> http://stackoverflow.com/questions/1469529/sum-of-digits-of-a-factorial/1574079#1574079 0 Answer by PeterAllenWebb for Sum of digits of a factorial PeterAllenWebb 2009-10-15T18:04:58Z 2009-10-15T18:21:22Z <p>Even without arbitrary-precision integers, this should be brute-forceable. In the problem statement you linked to, the biggest factorial that would need to be computed would be 1000!. This is a number with about 2500 digits. So just do this:</p> <ol> <li>Allocate an array of 3000 bytes, with each byte representing one digit in the factorial. Start with a value of 1.</li> <li>Run grade-school multiplication on the array repeatedly, in order to calculate the factorial.</li> <li>Sum the digits.</li> </ol> <p>Doing the repeated multiplications is the only potentially slow step, but I feel certain that 1000 of the multiplications could be done in a second, which is the worst case. If not, you could compute a few "milestone" values in advance and just paste them into your program.</p> <p>One potential optimization: Eliminate trailing zeros from the array when they appear. They will not affect the answer. </p> <p>OBVIOUS NOTE: I am taking a programming-competition approach here. You would probably never do this in professional work.</p> http://stackoverflow.com/questions/984729/how-can-i-determine-how-loud-a-wav-file-will-sound/984737#984737 7 Answer by PeterAllenWebb for How can I determine how loud a WAV file will sound? PeterAllenWebb 2009-06-12T02:30:09Z 2009-09-15T15:42:56Z <p><a href="http://en.wikipedia.org/wiki/Root%5Fmean%5Fsquare#Relationship%5Fto%5Fthe%5Farithmetic%5Fmean%5Fand%5Fthe%5Fstandard%5Fdeviation" rel="nofollow">Root Mean Square</a> is often used to estimate the loudness of sound files. This is because a sound that is very loud might not be perceived that way if it is very short. Also remember that power increases exponentially with the square of amplitude.</p> <p>The audio geeks at Hydrogen Audio know a ton about this stuff...check out their <em>free</em> <a href="http://wiki.hydrogenaudio.org/index.php?title=Replay%5FGain" rel="nofollow">Replay Gain</a> software. You may not need to do any programming at all.</p> <p>EDIT: Included comment feedback on power vs. amplitude.</p> http://stackoverflow.com/questions/1848335/anything-better-than-bounding-boxes Comment by PeterAllenWebb on anything better than bounding boxes? PeterAllenWebb 2009-12-04T22:03:08Z 2009-12-04T22:03:08Z @drhirsch True, but there are some special points of interest in the context of geolocation. http://stackoverflow.com/questions/1848335/anything-better-than-bounding-boxes/1848359#1848359 Comment by PeterAllenWebb on anything better than bounding boxes? PeterAllenWebb 2009-12-04T21:58:07Z 2009-12-04T21:58:07Z I definitely agree he wants to do some space partitioning. He will have to modify the quadtree concept to get it to work, though, since it is intended for two-dimensional space in which the regions are rectangular. He will also need to worry about wrapping, as Nosredna rightly points out. http://stackoverflow.com/questions/1849447/how-can-you-detect-if-two-regular-expressions-overlap-in-the-strings-they-can-mat Comment by PeterAllenWebb on How can you detect if two regular expressions overlap in the strings they can match? PeterAllenWebb 2009-12-04T21:27:35Z 2009-12-04T21:27:35Z For purposes of resolving this question, it might be important to know EXACTLY what you mean by regular expression. Are you talking about the regexp syntax used by a particular programming language? Or rather &quot;true&quot; regular expressions using only concatenation, alternation, and Kleene star? http://stackoverflow.com/questions/1827406/how-much-does-the-order-of-case-labels-affect-the-efficiency-of-switch-statements Comment by PeterAllenWebb on How much does the order of case labels affect the efficiency of switch statements? PeterAllenWebb 2009-12-01T17:11:54Z 2009-12-01T17:11:54Z @Andy E: But my real point is that people seem to assume that people asking questions on SO don't know basic things, e.g. its a mistake to spend a lot of time optimizing code that doesn't need to be fast. They then pounce on that instead of answering the harder question. http://stackoverflow.com/questions/1827406/how-much-does-the-order-of-case-labels-affect-the-efficiency-of-switch-statements Comment by PeterAllenWebb on How much does the order of case labels affect the efficiency of switch statements? PeterAllenWebb 2009-12-01T17:08:09Z 2009-12-01T17:08:09Z @Andy E: I deleted my comment after re-reading the question. The first questions he asks is: &quot;Can rearranging case labels can make code more efficient?&quot; The answer is yes. The second is: &quot;Is it micro-optimization?&quot; In most cases yes, but not always. In my coding career I have in fact improved performance critical code by rearranging a switch. http://stackoverflow.com/questions/1827406/how-much-does-the-order-of-case-labels-affect-the-efficiency-of-switch-statements/1827457#1827457 Comment by PeterAllenWebb on How much does the order of case labels affect the efficiency of switch statements? PeterAllenWebb 2009-12-01T16:58:10Z 2009-12-01T16:58:10Z I don't think an assembly listing would make it clear what's going on. You would have to look at a simulation of a particular CPU step by step over many loops over the if statement. http://stackoverflow.com/questions/1817274/partition-a-sequence-of-2n-real-numbers-so-that/1821469#1821469 Comment by PeterAllenWebb on partition a sequence of 2n real numbers so that... PeterAllenWebb 2009-11-30T22:04:43Z 2009-11-30T22:04:43Z But doesn't this assume that either (x2n,x0),(x2n-1,x1) or (x2n,x0),(x2n-1,x1) must be pairings? And if so, why is that? http://stackoverflow.com/questions/1771750/optimal-way-for-partitioning-a-cell-based-shape-into-a-minimal-amount-of-rectangl Comment by PeterAllenWebb on Optimal way for partitioning a cell based shape into a minimal amount of rectangles PeterAllenWebb 2009-11-26T13:53:08Z 2009-11-26T13:53:08Z Just wanted to warn you that I can't vouch for the optimality of my original answer. Check out my changes. http://stackoverflow.com/questions/1787252/is-there-a-on-algorithm-to-build-a-max-heap/1789173#1789173 Comment by PeterAllenWebb on Is there a O(n) algorithm to build a max-heap? PeterAllenWebb 2009-11-25T03:49:30Z 2009-11-25T03:49:30Z I stand corrected. http://stackoverflow.com/questions/1787252/is-there-a-on-algorithm-to-build-a-max-heap/1792317#1792317 Comment by PeterAllenWebb on Is there a O(n) algorithm to build a max-heap? PeterAllenWebb 2009-11-25T03:33:02Z 2009-11-25T03:33:02Z What's with the down-vote? My O(n) algorithm is a lot easier to implement than a Fibonacci tree. http://stackoverflow.com/questions/1787252/is-there-a-on-algorithm-to-build-a-max-heap/1792317#1792317 Comment by PeterAllenWebb on Is there a O(n) algorithm to build a max-heap? PeterAllenWebb 2009-11-24T19:48:33Z 2009-11-24T19:48:33Z You are correct. I removed the assertion: &quot;In general, no. Because if there were, you would have created a O(n) version of heap sort.&quot; I should have thought more carefully before I posted. http://stackoverflow.com/questions/1787252/is-there-a-on-algorithm-to-build-a-max-heap/1789173#1789173 Comment by PeterAllenWebb on Is there a O(n) algorithm to build a max-heap? PeterAllenWebb 2009-11-24T19:17:19Z 2009-11-24T19:17:19Z Your own link suggests that it is not possible. It should have said no there isn't... http://stackoverflow.com/questions/1787252/is-there-a-on-algorithm-to-build-a-max-heap/1787276#1787276 Comment by PeterAllenWebb on Is there a O(n) algorithm to build a max-heap? PeterAllenWebb 2009-11-24T19:16:49Z 2009-11-24T19:16:49Z I think he must have meant O(n log n)? http://stackoverflow.com/questions/1720803/how-to-easily-know-if-a-maze-has-a-road-from-start-to-goal/1720823#1720823 Comment by PeterAllenWebb on How to easily know if a maze has a road from start to goal? PeterAllenWebb 2009-11-19T03:04:33Z 2009-11-19T03:04:33Z @Matthieu: Yeah. Should have said &quot;never overestimates&quot;. http://stackoverflow.com/questions/1739599/wpf-textbox-height-equals-parent-height-minus-50-pixels/1739611#1739611 Comment by PeterAllenWebb on WPF TextBox Height Equals Parent Height minus 50 pixels? PeterAllenWebb 2009-11-16T01:39:18Z 2009-11-16T01:39:18Z It definitely would be overkill. The margin should work.