What "already invented" algorithm did you invent? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T04:09:25Z http://stackoverflow.com/feeds/question/13827 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent 26 What "already invented" algorithm did you invent? Guy 2008-08-17T18:46:44Z 2009-11-29T11:00:00Z <p>In my question <a href="http://beta.stackoverflow.com/questions/13540/insert-update-stored-proc-on-sql-server" rel="nofollow">Insert Update stored proc on SQL Server</a> I explained an efficient way of doing an insert/update - perhaps THE most efficient. It's nothing amazing but it's a small algorithm that I came up with in a mini-Eureka moment. Although I had "invented" it by myself and secretly hoped that I was the first to do so I knew that it had probably been around for years but after posting on a couple of lists and not getting confirmation I had never found anything definitive written up about it.</p> <p>So my questions: What software algorithm did you come up with that you thought that you'd invented? Or better yet, did you invent one?</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/13840#13840 0 Answer by eplawless for What "already invented" algorithm did you invent? eplawless 2008-08-17T18:56:07Z 2008-08-17T18:56:07Z <p>Median-Heaps :(</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/13895#13895 1 Answer by mgsloan for What "already invented" algorithm did you invent? mgsloan 2008-08-17T20:10:33Z 2008-08-17T20:10:33Z <p><a href="http://en.wikipedia.org/wiki/Shunting_yard_algorithm" rel="nofollow" title="Cherry G80-11900">Shunting Yard Algorithm</a></p> <p><a href="http://en.wikipedia.org/wiki/Mean_of_circular_quantities" rel="nofollow">Mean of Circular Quantities</a></p> <p><a href="http://en.wikipedia.org/wiki/Language-oriented_programming" rel="nofollow">Language Oriented Programming</a></p> <p><a href="http://en.wikipedia.org/wiki/Division_(mathematics)" rel="nofollow" title="G80-3000">Division</a> - back in 2nd grade haha</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/13911#13911 1 Answer by Ryan Fox for What "already invented" algorithm did you invent? Ryan Fox 2008-08-17T20:29:58Z 2008-08-17T22:24:20Z <ul> <li><a href="http://en.wikipedia.org/wiki/Temporal_difference_learning" rel="nofollow">Temporal difference learning</a></li> <li>Several different design patterns (<a href="http://en.wikipedia.org/wiki/Observer_pattern" rel="nofollow">Observer</a>, <a href="http://en.wikipedia.org/wiki/State_pattern" rel="nofollow">State</a>, etc..)</li> <li><a href="http://en.wikipedia.org/wiki/Breadth_first_search" rel="nofollow">Breadth-first search</a></li> <li><a href="http://en.wikipedia.org/wiki/Depth_first_search" rel="nofollow">Depth-first search</a></li> <li><a href="http://en.wikipedia.org/wiki/Binary_search" rel="nofollow">Binary search</a></li> <li>If statements in PIC assembly. (Subtract one number from another, and then check for over/underflow to see which one is bigger.)</li> </ul> <p>(Granted, none of these were as formally defined when I did them...)</p> <p>Edit: Derek called me out on a slight miswording. By "none of these were as formally defined when I did them," I meant that my implementations weren't as complete as their formal definitions.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/13915#13915 3 Answer by Derek Park for What "already invented" algorithm did you invent? Derek Park 2008-08-17T20:40:53Z 2008-08-17T20:40:53Z <p>@martinatime</p> <blockquote> <p>Math is generally considered "discovered" as opposed to invented. And programming and related studies are considered applied math.</p> </blockquote> <p>I've generally seen the opposite. e.g. Newton invented calculus. On the other hand, natural properties <em>are</em> generally "discovered." e.g. Pythagoras discovered the Pythagorean theorem.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/13916#13916 0 Answer by Jeff for What "already invented" algorithm did you invent? Jeff 2008-08-17T20:42:57Z 2008-08-17T20:42:57Z <p>After I was first exposed to selection sort I immediately saw room for improvement and created shaker sort. This was several years before I learned the name for either one.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/13928#13928 2 Answer by Derek Park for What "already invented" algorithm did you invent? Derek Park 2008-08-17T21:06:16Z 2008-08-17T21:06:16Z <p>@Ryan</p> <blockquote> <ul> <li><a href="http://en.wikipedia.org/wiki/Temporal_difference_learning" rel="nofollow">Temporal difference learning</a></li> <li>Several different design patterns (<a href="http://en.wikipedia.org/wiki/Observer_pattern" rel="nofollow">Observer</a>, <a href="http://en.wikipedia.org/wiki/State_pattern" rel="nofollow">State</a>, etc..)</li> <li><a href="http://en.wikipedia.org/wiki/Breadth_first_search" rel="nofollow">Breadth-first search</a></li> <li><a href="http://en.wikipedia.org/wiki/Depth_first_search" rel="nofollow">Depth-first search</a></li> <li><a href="http://en.wikipedia.org/wiki/Binary_search" rel="nofollow">Binary search</a></li> <li>If statements in PIC assembly. (Subtract one number from another, and then check for over/underflow to see which one is bigger.)</li> </ul> <p>(Granted, none of these were as formally defined when I did them...)</p> </blockquote> <p>Either the age on your profile page is way off, or you are drastically underestimating the development of computer science. It's a young field, but it's not <em>that</em> young.</p> <p>Depth-first and breadth-first are both so old that no one seems to know who "invented" them first. A* (of which both are merely special cases) was published in 1968. Binary search is probably as old as sorting. <code>If</code> statements have been around since at least 1978 (K&amp;R C), and probably quite a bit longer. Temporal difference learning was first described by that name in 1988. The Design Patterns book came out in 1994 (when you were presumably about 8 years old.</p> <p>It's cool that you reinvented these things without being exposed to them first, but I'm pretty sure they were all formally defined before you did so.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/13980#13980 -9 Answer by Ryan Fox for What "already invented" algorithm did you invent? Ryan Fox 2008-08-17T22:22:02Z 2008-08-17T22:22:02Z <p>@Derek</p> <p>What I meant was that I didn't formally define them when I did them.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/13985#13985 0 Answer by Ed Swangren for What "already invented" algorithm did you invent? Ed Swangren 2008-08-17T22:31:09Z 2008-08-17T22:31:09Z <p>I rewrote strcmp in C before I knew it existed (silly, I know. I learned the syntax well before the library). Of course, my strcmp was not as good as the C library's.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/13994#13994 8 Answer by Michael Neale for What "already invented" algorithm did you invent? Michael Neale 2008-08-17T22:41:10Z 2008-08-17T22:41:10Z <p>Recursive descent parsing.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/14077#14077 15 Answer by Esteban Araya for What "already invented" algorithm did you invent? Esteban Araya 2008-08-18T01:27:00Z 2009-10-02T19:59:30Z <p>I invented the Internet. ;)</p> <p>On a more serious note:<br /> I was setting up my home network one day and thought "I should have a machine that is purposely weak so that hackers go after it instead of my other machines". For about five minutes I thought I had an original idea... Needless to say, I quickly found the term honeypot in Wikipedia and realized I'm just an average joe.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/14084#14084 0 Answer by contagious for What "already invented" algorithm did you invent? contagious 2008-08-18T01:36:11Z 2008-08-18T01:36:11Z <p>This wasn't necessarily an algorithm at all, but as a homework for my C/Assembly class we had to write and implement our own <a href="http://en.wikipedia.org/wiki/Malloc" rel="nofollow" title="crackoverflow">malloc</a>. </p> <p>If anyone did the google code jam qualification round this year, they did a load balancing algorithm, a scheduling algorithm, and a surface area algorithm.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/25121#25121 0 Answer by John the Statistician for What "already invented" algorithm did you invent? John the Statistician 2008-08-24T15:44:20Z 2008-08-24T15:44:20Z <p>While I have the opportunity, I'd like somebody to show that something I came up with independently was invented before. It's so simple, I'm surprised that I haven't heard of it, but maybe one of you have. Namely, if you want to maintain a structure in order by the number of times an element occurs, in the worst case, you have to swap every two times. But, if you are willing to tolerate the elements being out of order by some small percentage of the overall count, then you only need swaps in the log of the number of arrivals (the log base depends on the percentage). You can prove this with the Master theorem. I did this in ~2005.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/25175#25175 0 Answer by Ross for What "already invented" algorithm did you invent? Ross 2008-08-24T16:45:38Z 2008-08-24T16:45:38Z <p>I re-created PHP's <a href="http://www.php.net/manual/en/function.wordwrap.php" rel="nofollow">word_wrap</a> <a href="http://forums.clantemplates.com/showthread.php?t=133172" rel="nofollow">here</a>. Mine's grammatically better.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/27514#27514 4 Answer by kokos for What "already invented" algorithm did you invent? kokos 2008-08-26T07:33:14Z 2008-08-26T07:33:14Z <p>Enigma machine (substitution, altering &amp; rotating cipher).</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/31612#31612 0 Answer by Tim Williscroft for What "already invented" algorithm did you invent? Tim Williscroft 2008-08-28T03:32:44Z 2008-08-28T03:32:44Z <p>1992: Auto-rebalancing AVL trees, where the re-balance is done on the tail of the recursive insert.</p> <p>In a university assignment.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/32746#32746 1 Answer by Mark Borgerding for What "already invented" algorithm did you invent? Mark Borgerding 2008-08-28T16:36:40Z 2009-10-02T20:12:20Z <p>I got a surprise the day before I was scheduled to present my findings on how to combine multiple source of soft bit decisions. I asked a colleague to review my presentation. He informed me that I had reinvented <a href="http://en.wikipedia.org/wiki/Maximal%5Fratio%5Fcombining" rel="nofollow">Maximal Ratio Combining</a>.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/32756#32756 0 Answer by DrPizza for What "already invented" algorithm did you invent? DrPizza 2008-08-28T16:41:01Z 2008-08-28T16:41:01Z <p>Recursive descent parsing supporting left recursion.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/32763#32763 0 Answer by Pascal for What "already invented" algorithm did you invent? Pascal 2008-08-28T16:41:51Z 2008-08-28T16:41:51Z <ul> <li><a href="http://en.wikipedia.org/wiki/Booth%27s_multiplication_algorithm" rel="nofollow">Booth's Algorithm</a> - for a topic called 'Computer Organization' at school</li> <li><a href="http://en.wikipedia.org/wiki/Ant_colony_optimization" rel="nofollow">Ant Colony Optimization</a> - for my Graduate studies in AI</li> </ul> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/32768#32768 0 Answer by spook327 for What "already invented" algorithm did you invent? spook327 2008-08-28T16:44:21Z 2008-08-28T16:44:21Z <p>Binary searches.</p> <p>I had been working on a C program to organize card game tournaments and wanted it to be really fast -- enough so that a large number of players could be handled on as little as a 486. When I started to realize how long looking up players was going to take, I tried to come up with a better solution than repeated linear searches and wound up with a binary search.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/32795#32795 0 Answer by Joel Martinez for What "already invented" algorithm did you invent? Joel Martinez 2008-08-28T16:54:10Z 2008-08-28T16:54:10Z <p>Not sure it really qualifies as an algorithm, but I "Invented" the technique of disabling a button on an HTML form with javascript so that the user doesn't inadvertently post the form twice.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/32823#32823 10 Answer by Matt Rogish for What "already invented" algorithm did you invent? Matt Rogish 2008-08-28T17:08:40Z 2008-08-28T17:08:40Z <p>I invented bubble sort in 1993. The year prior I had attended a computer camp (for pre-high school kids) and studied BASIC and Pascal. '93s summer computer camp we graduated up to C and had to sort an array of numbers. I, along with several kids in the group, arrived at the worlds most common bad implementation of sorting.</p> <p>Our instructor then explained Big-Oh notation (and I believe the implementation of quick-sort) and the rest, as they say, is history!</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/43232#43232 1 Answer by Ian Garcia for What "already invented" algorithm did you invent? Ian Garcia 2008-09-04T05:57:39Z 2009-10-02T20:02:59Z <p>Sequential Quadratic Programming with constraints. I "invented" a way to turn a nonlinear optimization problem with constraints into a sequence of linear (or in this case, quadratic) problems. I was not amused when I discovered it had been around for decades! (in my defense, optimization was not my field).</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/43237#43237 4 Answer by Apocalisp for What "already invented" algorithm did you invent? Apocalisp 2008-09-04T06:03:15Z 2008-09-04T06:03:15Z <p><a href="http://sigfpe.blogspot.com/2006/08/you-could-have-invented-monads-and.html" rel="nofollow">Monads</a>.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/43242#43242 6 Answer by Adam Davis for What "already invented" algorithm did you invent? Adam Davis 2008-09-04T06:11:57Z 2009-10-02T20:14:40Z <h2>Bresenham's line algorithm.</h2> <p>I wanted to draw lines with dashes or colors that vary along the length in GWBasic, but it had no facility for these, so I worked out how to generate a line very similar to Bresenham's method - no gaps, and a single width of pixels for a line of any angle.</p> <p>I was very proud of myself, but my parents and siblings just didn't understand how cool it was.</p> <p>Then I discovered the real Bresenham years later, and the awesome optimizations for linear memory implementations of it. It didn't dim my happiness - I was very young at the time and there was no such thing as the Internet back then.</p> <p>Algorithms are so cool...</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/43257#43257 1 Answer by joshhunt for What "already invented" algorithm did you invent? joshhunt 2008-09-04T06:52:07Z 2009-10-02T20:15:40Z <p>Whilst it isn't really an algorithm, I did completely code a lolcat compiler/translator in Python, before actually googling it and finding out there were already a couple existing. </p> <p>And I was so proud of myself...</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/43326#43326 0 Answer by Ced-le-pingouin for What "already invented" algorithm did you invent? Ced-le-pingouin 2008-09-04T08:12:19Z 2008-09-04T08:12:19Z <p>I guess I must have "invented" pretty much every array function in PHP :D And maybe some of the string functions too (but who hasn't, in any language ?)</p> <p>Since library functions written in C seemed not good enough for me, I had to rewrite them in pure PHP (performance is for sissies ;)</p> <p>Then I learned to check the docs at php.net more often...</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/48863#48863 1 Answer by Dominic Eidson for What "already invented" algorithm did you invent? Dominic Eidson 2008-09-07T22:50:52Z 2008-09-07T22:50:52Z <p>@<a href="#25175" rel="nofollow">Ross</a></p> <p>Amusingly enough, I wrote the <a href="http://www.the-infinite.org/archive/php/word_wrap" rel="nofollow">original version of the word_wrap function</a> in PHP, before it became part of the core PHP function set.</p> <p>It was originally written because I needed to be able to create quoted text areas for an online messaging system.</p> <p>Extra amusing - It's listed as an alternative in the <a href="http://www.php.net/manual/en/function.wordwrap.php#10013" rel="nofollow">comments</a> to PHP's word_wrap.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/48894#48894 3 Answer by Hafthor for What "already invented" algorithm did you invent? Hafthor 2008-09-07T23:27:08Z 2008-09-07T23:27:08Z <p>I "invented" the <a href="http://en.wikipedia.org/wiki/Triangular_number" rel="nofollow">triangular number</a> formula in 5th grade -- and then proceeded to spend a real lot of time trying to promote the operators using logarithms to compute factorials.<p>Early in programming, I "invented" the <a href="http://en.wikipedia.org/wiki/Selection_sort" rel="nofollow">selection sort</a> -- made way more sense to me than <a href="http://en.wikipedia.org/wiki/Bubble_sort" rel="nofollow">bubble sort</a>.<p>Back in the late 90s, I invented double-interleaved firmware-generated PWM to boost apparent regulation resolution. Patent #<a href="http://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO2&amp;Sect2=HITOFF&amp;p=1&amp;u=/netahtml/PTO/search-bool.html&amp;r=1&amp;f=G&amp;l=50&amp;co1=AND&amp;d=PTXT&amp;s1=hafthor&amp;OS=hafthor&amp;RS=hafthor" rel="nofollow">6252373</a>.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/84744#84744 1 Answer by Will Harris for What "already invented" algorithm did you invent? Will Harris 2008-09-17T15:51:43Z 2008-09-17T15:51:43Z <ul> <li><a href="http://en.wikipedia.org/wiki/Run-length_encoding" rel="nofollow">Run length compression</a></li> <li><a href="http://en.wikipedia.org/wiki/LZ77_and_LZ78" rel="nofollow">Sliding window compression</a></li> <li><a href="http://en.wikipedia.org/wiki/Cycle_detection" rel="nofollow">Tortoise and Hare</a></li> </ul> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/85133#85133 0 Answer by Nick Johnson for What "already invented" algorithm did you invent? Nick Johnson 2008-09-17T16:39:03Z 2009-10-02T20:17:47Z <p><a href="http://blog.notdot.net/archives/39-Update-on-Anagram-Trees.html" rel="nofollow">Anagram Trees</a> - apparrently also known as an 'addagram'.</p> <p><a href="http://blog.notdot.net/archives/40-Cryptographically-secure-IOUs-without-a-trusted-third-party.html" rel="nofollow">Cryptographically secure IOUs</a> - of course, there is a lot of research in this area.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/106776#106776 0 Answer by Scott Bale for What "already invented" algorithm did you invent? Scott Bale 2008-09-20T02:04:16Z 2008-09-22T04:40:30Z <p>When I was in grad school I "invented" the composite design pattern. I was coding a graphics editor in Java 1.0, with the requirement of being able to group multiple shapes into a single shape. I came up with what I thought was the clever idea of writing a class that implemented the Shape interface but contained a collection of Shape instances. I almost injured myself while patting myself on the back.</p> <p>Sometime in the next year, I was introduced to the <a href="http://rads.stackoverflow.com/amzn/click/0201633612" rel="nofollow">Gang of Four Design Patterns</a> book. That burst my bubble.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/106783#106783 40 Answer by Bill James for What "already invented" algorithm did you invent? Bill James 2008-09-20T02:07:00Z 2008-09-20T02:07:00Z <p>When I was in 2nd grade, I figured out that if you have a square, like 9 = 3^2... to get to the next square (4^2), you simply add 3 and 4.</p> <p>I generalized it, so if you had any number squared, you could get the next number squared by adding the first number and the next to the first one squared.</p> <p>So, I kind of invented algebra.</p> <p>x^2 + x + (x+1) = x^2 + 2x + 1 = (x+1)^2</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/106814#106814 0 Answer by finnw for What "already invented" algorithm did you invent? finnw 2008-09-20T02:26:32Z 2008-09-20T02:26:32Z <p><a href="http://en.wikipedia.org/wiki/Huffman_coding" rel="nofollow">Huffman Coding</a>, in 6502 assembly, while trying to improve an existing compression routine to squeeze an extra "cracked" Commodore 64 game onto a floppy disk, in 1991.</p> <p><a href="http://en.wikipedia.org/wiki/Carry_save_adder" rel="nofollow">Carry Save Adder</a></p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/106834#106834 1 Answer by Paul Reiners for What "already invented" algorithm did you invent? Paul Reiners 2008-09-20T02:36:51Z 2008-09-20T02:36:51Z <p>I reinvented Insertion sort as a kid when sorting our-of-order volumes of the encyclopedia at school.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/106852#106852 6 Answer by rubancache for What "already invented" algorithm did you invent? rubancache 2008-09-20T02:47:34Z 2008-09-20T02:47:34Z <p>Not quite an algorithm.. but way back in elementary school I saw an episode of Bill Nye the Science Guy where Bill said something along the lines of "..but it would take the force of exploding stars to rearrange matter". I immediately thought: "Man.. What if a giant explosion created all the matter in the universe out of something else?" I thought I was on to something!</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/106865#106865 0 Answer by david for What "already invented" algorithm did you invent? david 2008-09-20T02:54:21Z 2008-09-20T02:54:21Z <p>Canny (sp?) Line Detection in images (like photographs).</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/106876#106876 0 Answer by dicroce for What "already invented" algorithm did you invent? dicroce 2008-09-20T02:57:15Z 2008-09-20T02:57:15Z <p>I happily invented the "One Time Pad".</p> <p>My idea was that if the weakness of encryption comes from repeatedly applying the same key (albeit with mathematical manipulations) to a large data file, you could get around this by just having a key of pure entropy (or as close to it as you have on hand :) that is bigger than the data you wish to encrypt. My other idea was that if the key was totally random your algorithm could be as simple as adding for encrypting and subtracting for decrypting. I also predicted this would be unbreakable.</p> <p>I found out later that this is a one time pad, and it is indeed unbreakable.</p> <p>(I also invented steam engines as a kid, and a space shuttle with 3 booster rockets because, you know, its 1 better!)</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/106900#106900 4 Answer by rampion for What "already invented" algorithm did you invent? rampion 2008-09-20T03:08:30Z 2008-09-20T03:08:30Z <p>&#8730;i - i&#8730;i = &#8730;2</p> <p>(not an algorithm, I know, but I still thought it was the coolest thing when I discovered in in 7th grade algebra... until I got to complex analysis in college. Actually, I still think it's cool, but I'm a math geek)</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/106961#106961 1 Answer by computergeek6 for What "already invented" algorithm did you invent? computergeek6 2008-09-20T03:28:17Z 2008-09-20T03:28:17Z <p>I "invented" Bubble Sort, floor(), ceil(), and sleep() in C.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/147596#147596 0 Answer by Jacob for What "already invented" algorithm did you invent? Jacob 2008-09-29T05:08:35Z 2008-09-29T05:08:35Z <p>I "invented" linked lists as a junior in high school, armed only with the knowledge of pointers and classes (but not inheritance yet).</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/147651#147651 3 Answer by fredrikj for What "already invented" algorithm did you invent? fredrikj 2008-09-29T05:41:18Z 2008-09-29T05:41:18Z <p>Like many others, I invented bubble sort, binary search, etc in high school.</p> <p>For a more interesting example, I recently "invented" an algorithm for approximating Fourier integrals, based on applying a specific sequence transformation to partial integrals. Turned out, upon consulting specialized literature, that someone already thought of this in the 1960s.</p> <p>As a rule of thumb, if you come with a brilliant new algorithm, someone already thought of it in the 1960s.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/221557#221557 0 Answer by Ferruccio for What "already invented" algorithm did you invent? Ferruccio 2008-10-21T11:45:37Z 2008-10-21T11:45:37Z <p>When I first started tinkering with assembly language, I figured out how to make a dynamically allocated list by storing a pointer to the next piece of memory in each allocated block. It wasn't till a few years later when I took a data structures class that I learned that my "invention" was called a linked list.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/242412#242412 2 Answer by Artelius for What "already invented" algorithm did you invent? Artelius 2008-10-28T06:42:40Z 2008-10-28T06:42:40Z <p>How about... ARRAYS!</p> <p>I was 7 or 8, fiddling with BASIC, trying to make a prime number generator. I invented the exact concept of an array, tried in vain to figure out how it was done in BASIC (anyone used PHP's variable variables? I tried that kind of thing but it didn't work) and in the end used sequential files to simulate arrays. To read a certain element I'd open the file, read n lines, and there was my value.</p> <p>At exactly the same time I had invented primality testing by trial division! Hehe. I even thought up the "only test primes, and only up to the square root of n" optimisation.</p> <p>Needless to say I discovered BASIC's arrays a few months later. And as a matter of fact, I'm man enough to admit that I still use BASIC.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/242906#242906 0 Answer by pi for What "already invented" algorithm did you invent? pi 2008-10-28T11:06:45Z 2008-10-28T11:06:45Z <p>I once wrote a <a href="http://en.wikipedia.org/wiki/Recursive_descent" rel="nofollow">recursive descent parser</a>, without knowing the concept beforehand.</p> <p>Among other - then unnamed to me - Design Patterns I invented the <a href="http://en.wikipedia.org/wiki/Visitor_pattern" rel="nofollow">Visitor Pattern</a> and the <a href="http://en.wikipedia.org/wiki/Facade_pattern" rel="nofollow">Facade Pattern</a> (who did not?).</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/342599#342599 0 Answer by Pyrolistical for What "already invented" algorithm did you invent? Pyrolistical 2008-12-05T01:06:53Z 2009-10-02T20:03:59Z <p>Lazy synchronization with asynchronous method calls, i.e. functional programming.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/342612#342612 13 Answer by Karl for What "already invented" algorithm did you invent? Karl 2008-12-05T01:13:21Z 2008-12-05T01:13:21Z <p>I was about ten and playing with the Basic interpreter on my very own 386 workstation. QBASIC actually, was a much nicer editor. Anyway, I knew counters and variables and GOTO, and needed a repeater structure, and I had constructed a bit of code that nicely incremented and checked a value, and jumped out of the loop if it exceeded the amount.</p> <p>It wasnt until two years later I got a book on programming in C and I discovered I had invented For and While loops!!</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/342617#342617 0 Answer by Jon DellOro for What "already invented" algorithm did you invent? Jon DellOro 2008-12-05T01:14:44Z 2009-10-02T20:11:39Z <p><a href="http://en.wikipedia.org/wiki/Bubble%5Fsort" rel="nofollow">Bubble sort</a> :)</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/342686#342686 6 Answer by J.T. Hurley for What "already invented" algorithm did you invent? J.T. Hurley 2008-12-05T01:49:20Z 2008-12-05T01:49:20Z <p>I can honestly claim I never "invented" bubble sort.</p> <p>Nope, I went and "invented" bucket sort instead.</p> <p>I'm so ashamed. :)</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/342701#342701 0 Answer by Jonathan Leffler for What "already invented" algorithm did you invent? Jonathan Leffler 2008-12-05T02:00:23Z 2008-12-06T22:12:48Z <p>When I was in 'upper school' (high school if you like), I was writing a program in Fortran IV (with BASIC as the prior language) and I discovered that I had created a looping construct that was different from a DO loop, but not supported by Fortran directly. It was actually a WHILE loop (supported in Fortran 77, of course). I discovered that what I'd invented was a WHILE loop a year or two later, when I was reading more books about programming. (That program was also unrolling tail recursion with an array representation, but that took me still longer to realize.)</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/342711#342711 3 Answer by Steven A. Lowe for What "already invented" algorithm did you invent? Steven A. Lowe 2008-12-05T02:06:48Z 2009-10-02T20:10:04Z <p>Like everyone else who was primarily self-taught, most common data structures: lists, trees, queues, etc. I didn't know what they were called until college, several years later.</p> <p>One day the <a href="http://en.wikipedia.org/wiki/Ternary%5Fsearch%5Ftrie" rel="nofollow">trie</a> just popped into my head, for no apparent reason - it didn't even solve the problem I was working on.</p> <p>The major object-oriented elements (objects, messages, inheritance) were invented/derived out of necessity while working on a 2D CAD application (in assembly language).</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/342770#342770 0 Answer by johnc for What "already invented" algorithm did you invent? johnc 2008-12-05T02:51:05Z 2009-10-02T20:09:05Z <p>I couldn't believe it when I researched IoC that I had 'invented' it 6 months earlier for an object engine in our local metadata repository.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/345377#345377 2 Answer by Guge for What "already invented" algorithm did you invent? Guge 2008-12-05T22:21:08Z 2008-12-05T22:21:08Z <p>I invented a way of turning infix to postfix using just an array in 1989. For many years I though I had reinvented something else, but lately I'm not so sure. All I can find when I google or run into how-to articles is Dijkstras shunting yard, which uses a stack.</p> <p>So I have decided to publish it tonight on <a href="http://www.guge.net/?p=3" rel="nofollow">my blog</a>. If anybody can point out that it is just a reinvention I'll be a bit disappointed and you can share that with me.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/345429#345429 1 Answer by moffdub for What "already invented" algorithm did you invent? moffdub 2008-12-05T22:44:24Z 2008-12-05T22:44:24Z <p>I have a few.</p> <ul> <li><p>Most recently, <a href="http://moffdub.wordpress.com/2008/04/28/introducing-the-project/" rel="nofollow">I was the only programmer on a medium-sized CRUD-type application</a> that incidentally did have some meaningful logic as well. So for the first time in my career (I was still in college at the time) I was in total charge of UI, domain layer, and the DB. </p> <p>I had this great idea that in order to give data to the UI, I should "flatten" my domain objects into what amounted to a big struct. This way, the UI could focus on mapping field to UI control and have as little non-UI logic as possible. Then I found out that these were actually <a href="http://en.wikipedia.org/wiki/Data_Transfer_Object" rel="nofollow">Data Transfer Objects</a>.</p></li> <li><p>I also hand-coded my own strategy to save domain objects into a relational database. Imagine my surprise when I found out that this was called <a href="http://en.wikipedia.org/wiki/Object-Relational_impedance_mismatch" rel="nofollow">the object-relational impedance mismatch</a>, and there was an entire sub-industry devoted to the problem.</p></li> <li><p>Even earlier in college I had to write a smaller tool that would grab spec data from a bunch of servers on our network, and then dump out a suggested plan for how to make sure each server had the minimum amount of some resource, like RAM, in the smallest amount of swaps. It was really ugly procedural soup because I wrote it in VBA in an MS Access DB (they forced me to, don't hate me). </p> <p>I ended up with a heuristic algorithm that was correct most of the time, and it was a feeble attempt at a <a href="http://en.wikipedia.org/wiki/Dynamic_programming" rel="nofollow">dynamic programming algorithm</a>, which I wouldn't learn about until three years later in grad school.</p></li> </ul> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/345462#345462 1 Answer by C. Dragon 76 for What "already invented" algorithm did you invent? C. Dragon 76 2008-12-05T23:04:23Z 2008-12-05T23:04:23Z <p><a href="http://mathworld.wolfram.com/FermatsLittleTheorem.html" rel="nofollow">Fermat's Little Theorem</a>. I only discovered the binary case, so thank goodness Fermat realized it worked with other bases.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/346924#346924 0 Answer by J c for What "already invented" algorithm did you invent? J c 2008-12-06T22:43:13Z 2008-12-06T22:43:13Z <p>I was pleasantly surprised to find out some years later that I had independently invented a technique for lossless compression.</p> <p>I had written a program (Turbo Pascal on a Tandy 1000) for drawing images (basically a keyboard-only version of paint) and was concerned with how much space the saved images were taking up, leading me to a basic lossless compression algorithm that drastically reduced the size of the image files.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/872136#872136 9 Answer by for What "already invented" algorithm did you invent? 2009-05-16T10:24:05Z 2009-10-02T20:08:15Z <p>When I was just a kid I "discovered" that when you multiply a number XY (less than 100) by 11 you just have to put to sum of X+Y in the center, and X, Y in the extrema to get the result (no more calculator).</p> <pre><code>11*45 = 4 (4+5) 5 = 495 </code></pre> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/872170#872170 2 Answer by Azder for What "already invented" algorithm did you invent? Azder 2009-05-16T10:46:55Z 2009-10-07T03:59:22Z <p>When I was second grade middle school, our teacher gave us a homework: Make an alghorithm in pseudo code that prints the first n Fibonacci numbers. So I made my own iterative procedure:</p> <pre><code>a = 0 ; b = 1 ; n = 10 ; i = 0 ; while ( i &lt; n ) { b = b + a ; a = a + b ; println b ; i = i + 1 ; println a ; i = i + 1 ; } </code></pre> <p>Much later I learnt that this was one of the most used examples for recursive alghoritms.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/872192#872192 0 Answer by Dario for What "already invented" algorithm did you invent? Dario 2009-05-16T11:01:49Z 2009-11-28T16:31:50Z <p><a href="http://en.wikipedia.org/wiki/Hyper%5Foperator" rel="nofollow">Hyper operators</a> when I was 13. And some cryptographical and compression algorithms (RLE, Vigenère) ;-) </p> <p>I actually invented another a little compression algorithm - I don't know 'til today whether it already exists. It's based on eliminating the leading 0-bits in the binary representation of source bits which have been ordered according to their probability.</p> <p>And <a href="http://en.wikipedia.org/wiki/Cantor%5Fpairing%5Ffunction" rel="nofollow">Cantor's pairing function</a>.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/872267#872267 0 Answer by egaga for What "already invented" algorithm did you invent? egaga 2009-05-16T11:48:12Z 2009-10-02T20:06:57Z <p>Merge sort, radix sort, bucket sort, see in wiki: <a href="http://en.wikipedia.org/wiki/Sorting%5Falgorithm" rel="nofollow">sorting algorithms</a>.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/994547#994547 0 Answer by Jeffrey Kemp for What "already invented" algorithm did you invent? Jeffrey Kemp 2009-06-15T05:00:56Z 2009-06-15T05:00:56Z <p>Recently we designed and built a set of PL/SQL packages on an Oracle database, for use as an interface to the database by multiple front ends. Normally things like data validation and error reporting might be implemented in procedural code in the form, but in this case we needed the form to get all its information about each column including whether it was mandatory, and if it failed any validation checks, from the database.</p> <p>We pretty much solved it with what we called "instructions", which encompassed a number of different things that the database packages could "tell" the form, e.g. "item X is mandatory", "item Y has error ZZZ", "hide item M", "make item N disabled", etc.</p> <p>After we'd implemented it we found we'd just reinvented the <a href="http://en.wikipedia.org/wiki/Command%5Fpattern" rel="nofollow">Command pattern</a>.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/994570#994570 0 Answer by TM for What "already invented" algorithm did you invent? TM 2009-06-15T05:16:55Z 2009-06-15T05:16:55Z <p>Not sure if you could call it an "algorithm", but I came up with a generic form validation mechanism for jquery that was VERY similar to the 'validate' plugin.</p> <p>Also, in high school I wrote a program on my TI-89 that was the Sieve of Eratosthenes, all on my own. Of course, what I didn't realize was that there was already a built in method for testing primality.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/994581#994581 2 Answer by Jimmy for What "already invented" algorithm did you invent? Jimmy 2009-06-15T05:21:53Z 2009-06-15T05:21:53Z <p>During an interview, I came up with the <a href="http://en.wikipedia.org/wiki/Knuth%5Fshuffle" rel="nofollow">Knuth shuffle</a> (or Fisher-Yates Shuffle, as it is also known). I was quite proud after I looked it up later, as I'd never really considered the problem of randomizing a list before (sorting, on the other hand...)</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/994639#994639 1 Answer by feonixrift for What "already invented" algorithm did you invent? feonixrift 2009-06-15T05:56:19Z 2009-06-15T05:56:19Z <p>Got in an argument with a professor (I can TOO have pointers to functions!), ended up with a propensity for using sparse jump tables, which I didn't hear of until a few years later.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/994679#994679 1 Answer by Jacob for What "already invented" algorithm did you invent? Jacob 2009-06-15T06:11:19Z 2009-10-03T00:30:39Z <p>Ugh. One embarrassing project of mine was porting some code written for a processor with floating-point math to one without. Fixed point was out of the question, so I "invented" what I thought was a novel approach: a structure containing a set number of bits for the value and another set of bits for the magnitude of the number. And then I wrote functions for performing mathematical operations on them. Yep, I basically duplicated the floating point number (and probably not that well). I should have taken computer science in school.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/994728#994728 0 Answer by this.__curious_geek for What "already invented" algorithm did you invent? this.__curious_geek 2009-06-15T06:32:02Z 2009-06-15T06:32:02Z <p>I happened to partially re-invent the quicksort during my masters. I was a nerd not attending Data structure lectures. I was always believing there must exists one more way to sort the numbers. I spent half-a-night designing my algo. for sorting numbers and next day my colllegue told me it's quicksort and it's already there. poor me! :(</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/995583#995583 13 Answer by Cowan for What "already invented" algorithm did you invent? Cowan 2009-06-15T11:22:19Z 2009-06-15T11:22:19Z <p>Once, as I was walking home from the train, I thought to myself "wow, Linked Lists are totally awesome, except for the whole O(n) lookup thing, which makes them useless for a great many purposes. If only there was a way to quickly find things in a linked list and still have the very-fast insertion/removal..."</p> <p>By the time I got home (almost exactly 20 minutes), I had <em>completely</em> specified every possible nuance of a truly incredible algorithm which made linked list lookups extremely efficient while still largely keeping their advantages. I mean, this this was flawless, it was going to revolutionise the world of data structures and probably make me famous.</p> <p>I don't know what terms I put into Google that night which revealed the existence of <a href="http://en.wikipedia.org/wiki/Skip%5Flist" rel="nofollow">the Skip List</a>, but let me assure you I was crushed.</p> <p>On the plus side, my algorithms were basically identical to Bill Pugh's, so at least I reinvented it <em>properly</em>. Small mercies.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1216424#1216424 0 Answer by Alix Axel for What "already invented" algorithm did you invent? Alix Axel 2009-08-01T11:31:54Z 2009-08-01T11:31:54Z <p>When I was in 9th grade and into number theory I went to sleep really tired and started thinking about an algorithm to find is a number is prime or not, I doing some head calculations and then waking up a few hours later screaming "I found it!".</p> <p>Turns up I had discovered the formula 2^p - 2 / p == 0 when p is prime, also known as Chinese Hypothesis and a derivative from one of the Fermat's formulas - I found out about it two weeks later and I also found that it fails for pseudo primes (numbers such as 341) - it was a really bad double deception.</p> <p>Since then I've never done any more work on number theory again.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1510813#1510813 0 Answer by Steve314 for What "already invented" algorithm did you invent? Steve314 2009-10-02T17:15:32Z 2009-10-02T17:15:32Z <p>Tabular LR parsing.</p> <p>I was inspired by the packrat (tabular LL) parsers. Tabular LR is basically a dynamic programming approach to LR parsing - in principle similar to backtracking LR or Tomita-style LR. One plus is that it can detect problems at run-time that would cause infinite loops in those (you can do a constant-time cycle-check on a column of the table).</p> <p>Also, since the number of tokens to "pop off the stack" for reduce is determined by the table rather than the current LR state, you can tweak the state model derivation and handle EBNF without doing grammar transformations.</p> <p>The quotes are because you do any actual popping - you don't have a stack, only a table.</p> <p>The downside is (like packrat) the memory requirements. Not always a big deal these days, but you'd have a hard time parsing an infinite stream of input (e.g. network protocols).</p> <p>Anyway, some guy called Nederhof beat me by more than 10 years IIRC. I'm not entirely sure he's doing the same thing (the papers are math-heavy and I never got round to decoding them) but just based on the title, it probably is.</p> <p>Also, I never actually implemented it anyway.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1510879#1510879 0 Answer by Stephen Canon for What "already invented" algorithm did you invent? Stephen Canon 2009-10-02T17:29:01Z 2009-10-02T21:24:45Z <p>The ones that have stuck with me:</p> <ul> <li>LR parsing</li> <li>Spectral Methods (a type of numerical solver)</li> <li>Marching Cubes Algorithm (I was especially indignant about this, because despite it being relatively obvious -- to the point that a sophomore in college with no relevant training beyond an intro CS course and a good knowledge of differential geometry could come up with it -- GE managed to patent it, which prevented its use in the project for which I was a research assistant. Patent expired in 2005, thank god)</li> </ul> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1510930#1510930 1 Answer by Dinah for What "already invented" algorithm did you invent? Dinah 2009-10-02T17:41:28Z 2009-10-02T17:41:28Z <p>I knew a girl who at a young age wasn't paying attention and was generally being a hyperactive kid. At one point, she swung a full cup around a vertical circle and nothing spilled out. She thought she'd broken gravity or something. She tried it again and again and it worked. She showed her dad who had an expression of "yeah... and?" She couldn't conceive that other people already knew.</p> <p>When she got old enough to encounter this taught in the classroom, she was quietly really proud of herself, knowing she'd found it all on her own and before any of her friends knew what it was.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1510959#1510959 0 Answer by plinth for What "already invented" algorithm did you invent? plinth 2009-10-02T17:49:22Z 2009-10-02T17:49:22Z <p>I invented <a href="http://en.wikipedia.org/wiki/Display%5Flist" rel="nofollow">display lists</a> in 1980 when I was in 8th grade for games that I was writing. </p> <p>I invented <a href="http://en.wikipedia.org/wiki/Flood%5Ffill" rel="nofollow">non-recursive flood fill</a> in 1983 when I was a junior in high school as part of a graphics package I was writing.</p> <p>I invented <a href="http://en.wikipedia.org/wiki/Divide%5Fand%5Fconquer%5Falgorithm" rel="nofollow">divide and conquer</a> in 1982 while I was trying to write a line drawing routine that only used addition and shifting (it worked--looked like crap--but it needed fixed point arithmetic).</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1510973#1510973 1 Answer by Larsenal for What "already invented" algorithm did you invent? Larsenal 2009-10-02T17:56:26Z 2009-10-02T17:56:26Z <p>As a kid I "invented" sine and cosine in order to figure our how to draw a circle point by point using QBasic.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1511006#1511006 4 Answer by Greg for What "already invented" algorithm did you invent? Greg 2009-10-02T18:03:10Z 2009-10-02T18:03:10Z <p>I "invented" the infinite loop because of never updating the termination condition.</p> <pre><code>bool crush = "Meg"; bool girlfriend = ""; int daysAlone = 1; while( crush != girlfriend ) { Output( "Days alone: " + daysAlone ); SeeGirl(crush); TellSelf("Try to talk to her again tomorrow"); daysAlone++; } </code></pre> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1511540#1511540 4 Answer by Dan for What "already invented" algorithm did you invent? Dan 2009-10-02T20:04:50Z 2009-10-02T20:04:50Z <p>Another grade school one: In fifth grade my student teacher in math class asked if anyone knew how to find the area of a triangle. I thought, hey, a triangle's kind of like half a rectangle. So I raised my hand and said, "Maybe multiply height times width and then just divide by two?" I must say she was quite shocked, and I felt very proud. In retrospect that's probably not all that clever for fifth grade...</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1511560#1511560 0 Answer by samfu_1 for What "already invented" algorithm did you invent? samfu_1 2009-10-02T20:10:01Z 2009-10-02T20:10:01Z <p>Spent a few days writing an algorithm to shuffle Arrays when I found several, more concisely written methods already in existence!</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1511586#1511586 0 Answer by jian2587 for What "already invented" algorithm did you invent? jian2587 2009-10-02T20:17:14Z 2009-10-02T20:17:14Z <p>I invented bucket sort (w/o realizing what pigeonhole principle is. I thought quicksort was slow for use in a project of mine and since I was using only integers I could do so much better) and divide-and-conquer form of convex hull algorithm (that works with only integer coordinates) just from sheer repetitive doodling of convex hulls around points :) I just have to find out the first and last points of each row, get the top left most and bottom right most point, join a line between them, then repeatedly add a point in between them to expand the convex hull in a divide-and-conquer manner. Eventually a convex hull is formed.</p> <p>Upon learning raycasting algorithm (the one generally thought to be used in Wolfenstein), I invented one that instead of using a matrix of walls (zero value = non-wall, non-zero value = wall), it uses an array of vectors (each vector represents a point, and a wall is made from two such points).</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1511591#1511591 1 Answer by expedient for What "already invented" algorithm did you invent? expedient 2009-10-02T20:17:39Z 2009-10-02T20:17:39Z <p>Stopping short.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1511596#1511596 0 Answer by Esko Luontola for What "already invented" algorithm did you invent? Esko Luontola 2009-10-02T20:18:31Z 2009-10-02T20:18:31Z <p><a href="http://en.wikipedia.org/wiki/Snapshot%5Fisolation" rel="nofollow">Snapshot isolation</a></p> <p>I wrote an in-memory database which can handle multiple concurrent transactions (for <a href="http://dimdwarf.sourceforge.net/" rel="nofollow">a hobby project</a>). When thinking about how to isolate the transactions, I decided to use a revision number system similar to Subversion. I realized that the resulting isolation level was not <a href="http://en.wikipedia.org/wiki/Isolation%5F%28database%5Fsystems%29#SERIALIZABLE" rel="nofollow">serializable</a>, but anyways quite good. Afterwards I did some digging and found out that I had implemented <a href="http://en.wikipedia.org/wiki/Snapshot%5Fisolation" rel="nofollow">snapshot isolation</a> and <a href="http://en.wikipedia.org/wiki/Multiversion%5Fconcurrency%5Fcontrol" rel="nofollow">multiversion concurrency control</a>.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1511601#1511601 0 Answer by Dinah for What "already invented" algorithm did you invent? Dinah 2009-10-02T20:19:21Z 2009-10-02T20:19:21Z <p>When I first started to try to get my head around the new weirdness before me that was OOP, I "invented" a way of doing stuff which was essentially the strategy pattern. I only knew of encapsulation and inheritance at the time. The descriptions of polymorphism that I found were totally incomprehensible to me and it would also be almost a year before I discovered design patterns. I thought I'd really invented something ground-breaking!</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1511646#1511646 -2 Answer by Nissan Fan for What "already invented" algorithm did you invent? Nissan Fan 2009-10-02T20:29:11Z 2009-10-02T20:29:11Z <p>This one:</p> <pre><code>func&lt;int&gt; all </code></pre> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1511701#1511701 1 Answer by Dave DeLong for What "already invented" algorithm did you invent? Dave DeLong 2009-10-02T20:42:26Z 2009-10-02T20:47:28Z <p>One summer as I was really bored, I started playing around with some trig functions and came up with a way to solve a triangle based on knowing two sides (<code>a</code> and <code>b</code>) and the area (<code>K</code>). In all of the time since then, I've never come across this algorithm elsewhere:</p> <p>c<sup>2</sup> = a<sup>2</sup> + b<sup>2</sup> -+ 2&radic;(a<sup>2</sup>b<sup>2</sup> - 4K<sup>2</sup>)</p> <p>It's similar to the Law of Cosines, but instead of using an angle to find the third side, it uses the area.</p> <p>(That's a minus-plus, not a &plusmn;. However, HTML doesn't have an entity to show it)</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1511749#1511749 0 Answer by Mads Elvheim for What "already invented" algorithm did you invent? Mads Elvheim 2009-10-02T20:56:08Z 2009-10-02T20:56:08Z <p>I "invented" binary search when I was still a teenager and had just started out with the programming language C. That was about two years before I got internet access at home.</p> <p>Although Internet took away the 'magic' I associate with learning by 'trial and error' and having little access to relevant literature, I can't say I miss those times either. I envy the youth nowadays.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1511784#1511784 0 Answer by The Wicked Flea for What "already invented" algorithm did you invent? The Wicked Flea 2009-10-02T21:06:36Z 2009-10-02T21:06:36Z <p>I invented <strong>modern supercomputing</strong>/distributed computing. I was only about five or six years old and don't remember ever thinking of it (thankfully Dad still has the paper somewhere).</p> <p>When in Church I'd doodle on paper, and one day I drew an interesting diagram. Basically there were lots of boxes filled with 1's and 0's that encircled a central, larger, box (computer). When Dad leaned over to ask me what I'd drawn, I explained that the central computer was the boss of all the others. The central computer would delegate pieces of the problem to the other computers, and then assemble the final answer.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1511842#1511842 0 Answer by Paul Nathan for What "already invented" algorithm did you invent? Paul Nathan 2009-10-02T21:19:53Z 2009-10-02T21:19:53Z <p>I was working with QBASIC and was too dumb to know what a SUB was.</p> <p>So I figured out structured programming to deal with my spaghetti code. </p> <p>Then, later, I started figuring out how to actually pass parameters internally.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1512634#1512634 1 Answer by Mark Ransom for What "already invented" algorithm did you invent? Mark Ransom 2009-10-03T02:40:04Z 2009-10-03T02:40:04Z <p>I invented a way of picking a random line from a file in a single pass through the file. The comments to <a href="http://stackoverflow.com/questions/232237/whats-the-best-way-to-return-a-random-line-in-a-text-file-using-c/232248#232248">this answer in StackOverflow</a> show that it was a known technique long before I figured out my answer.</p> <p>This is just the latest example of a long history of figuring stuff out. It was a much more valuable skill before you could look up anything you want on the internet.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1529452#1529452 0 Answer by Technowise for What "already invented" algorithm did you invent? Technowise 2009-10-07T04:18:33Z 2009-10-07T04:18:33Z <p>Once someone had asked me a puzzle question: To write a program to add two numbers without using arithmetic operators. For this I made an algorithm to add numbers using bit-wise operators, and was quite happy with what I did. Because until then I had never known of what full-adder was. Later when I studied about full adder and its implementation in Digital Electronics, I realized that it was exactly what I had written code for :)</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1529492#1529492 0 Answer by fsanches for What "already invented" algorithm did you invent? fsanches 2009-10-07T04:33:49Z 2009-10-07T04:33:49Z <p>Not an algorithm, but I invented high-order-functions (specifically map).</p> <p>I also invented versioned FUSE (file system in user space) in a shamefully ugly way (stat() everywhere).</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1813017#1813017 0 Answer by EricSchaefer for What "already invented" algorithm did you invent? EricSchaefer 2009-11-28T16:53:24Z 2009-11-28T16:53:24Z <p>I "invented" switch/case. I begun my programming career with a BASIC that did not have switch/case and turned to 68k assembly on the amiga. I didn't like to use multiple conditionals for a set of values and "invented" switch/case via jump lists.</p> <p>A little later I connected the amiga and a PC via parallel port with a special selfmade cable and wrote a program for each machine (both in assembly!) for sending files back and forth. I "invented" all kinds of error corrections, multilevel handshakes and discovered the "Two Army Problem". I thought I must be a genius. What a disappointment when I learnt all that a couple of years later in college as pretty basic stuff...</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1813065#1813065 0 Answer by JohnFx for What "already invented" algorithm did you invent? JohnFx 2009-11-28T17:03:59Z 2009-11-28T17:03:59Z <p>Not exactly an algorithm, but I "invented" AJAX back in the late 90's to support dynamically loading branches of a navigation tree without a full page refresh. It was some pretty hack-y code that used JS to load data into a hidden I-Frame then read it out into the parent page and manipulate the DOM. </p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1813103#1813103 0 Answer by Loren Pechtel for What "already invented" algorithm did you invent? Loren Pechtel 2009-11-28T17:15:27Z 2009-11-28T17:15:27Z <p>XOR drawing of a cursor so as to avoid a need to redraw the screen.</p> <p>Elsewhere in the same program I also developed the other technique for avoiding a redraw--copying off the block containing the cursor.</p> <p>How were patents ever granted for such things??</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1815153#1815153 0 Answer by bakore for What "already invented" algorithm did you invent? bakore 2009-11-29T10:09:51Z 2009-11-29T10:09:51Z <p>Sqaures of 5</p> <p>I think i came up with this when i was in 9th grade or something. I was just playing with numbers and doing some divisibility test when i discovered this peculiar trend in squares of numbers ending with 5. </p> <p>Let X be the number ending with 5 and let Y be the number before 5. For example if X=25 Y=2; X=625 , Y=62</p> <p>Then if X' is the square of X. Then Y' = Y(Y+1) and the number is {Y(Y+1)}25</p> <p>For example 15^2 = {1(1+1)}25=225 15^2 = {1(1+1)}25=225 25^2 = {2(2+1)}25=625 35^2 = {3(3+1)}25=1225 45^2 = {4(4+1)}25=2025 55^2 = {5(5+1)}25=3025 65^2 = {6(6+1)}25=4225</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1815240#1815240 0 Answer by inhahe for What "already invented" algorithm did you invent? inhahe 2009-11-29T11:00:00Z 2009-11-29T11:00:00Z <p>I have a lot of ideas for an OS I want to make someday (but may never have the expertise or time to), and one of my best ideas was for a memory management algorithm. Basically I had (unknowingly) reinvented Doug Lea's algorithm, with the one exception that, because of the way my idea had developed, I was still thinking you'd want to use a hash table to store the next-bin information, when in reality you don't need one at all.</p> <p>I've also invented a few sorting routines, which may or may not be useful (or even practical), and some of them are variations or crosses between other, existing sorting algorithms. <a href="http://inhahe.blogspot.com/search?q=sorting" rel="nofollow">http://inhahe.blogspot.com/search?q=sorting</a></p> <p>I also invented a method for finding primes (when i was young) but it's not as good as the sieve of whoever and it's probably obvious anyway. (for every odd number, try to divide by each prime already found in between 3 and sqrt(n). if none divides, add this number to the list of found primes.)</p> <p>oh, just recently i came up with a way to use SQL to efficiently find substrings within a document. i have no idea if this method is already known.. (i can only post one hyperlink, so i'll just tell you that the SQL algorithm is curretnly on the front page of the aforementioned blog)</p> <p>here's a Python one-liner I made once for returning all permutations of a string, but i don't know if the basic algorithm behind this has already been done.. i would guess it has. </p> <p>perms = lambda a: a[1:] and [c+r for i, c in enumerate(a) for r in perms(a[:i]+a[i+1:])] or a</p>