vote up 26 vote down star
12

In my question Insert Update stored proc on SQL Server 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.

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?

flag
1  
I was a kid programming in basic. I was having problems representing a variable number of bad dudes for a game I wrote-- arrays are fixed size. I came up with a solution, and when I introduced it to a friend he told me my solution is called a "linked list". – Frank Schwieterman Dec 24 '08 at 0:26

92 Answers

vote up 1 vote down

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.

link|flag
vote up 2 vote down

During an interview, I came up with the Knuth shuffle (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...)

link|flag
show 1 more comment
vote up 0 vote down

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.

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.

link|flag
vote up 0 vote down

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.

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.

After we'd implemented it we found we'd just reinvented the Command pattern.

link|flag
vote up 0 vote down

Merge sort, radix sort, bucket sort, see in wiki: sorting algorithms.

link|flag
vote up 0 vote down

Hyper operators when I was 13. And some cryptographical and compression algorithms (RLE, Vigenère) ;-)

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.

And Cantor's pairing function.

link|flag
vote up 2 vote down

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:

a = 0  ;
b = 1  ;
n = 10 ;
i = 0  ;
while ( i < n ) {
  b = b + a ;
  a = a + b ;
  println b ;
  i = i + 1 ;
  println a ;
  i = i + 1 ;
}

Much later I learnt that this was one of the most used examples for recursive alghoritms.

link|flag
show 4 more comments
vote up 9 vote down

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).

11*45 = 4 (4+5) 5 = 495
link|flag
vote up 0 vote down

I was pleasantly surprised to find out some years later that I had independently invented a technique for lossless compression.

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.

link|flag
vote up 1 vote down

Fermat's Little Theorem. I only discovered the binary case, so thank goodness Fermat realized it worked with other bases.

link|flag
vote up 1 vote down

I have a few.

  • Most recently, I was the only programmer on a medium-sized CRUD-type application 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.

    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 Data Transfer Objects.

  • 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 the object-relational impedance mismatch, and there was an entire sub-industry devoted to the problem.

  • 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).

    I ended up with a heuristic algorithm that was correct most of the time, and it was a feeble attempt at a dynamic programming algorithm, which I wouldn't learn about until three years later in grad school.

link|flag
vote up 2 vote down

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.

So I have decided to publish it tonight on my blog. If anybody can point out that it is just a reinvention I'll be a bit disappointed and you can share that with me.

link|flag
vote up 0 vote down

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.

link|flag
vote up 3 vote down

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.

One day the trie just popped into my head, for no apparent reason - it didn't even solve the problem I was working on.

The major object-oriented elements (objects, messages, inheritance) were invented/derived out of necessity while working on a 2D CAD application (in assembly language).

link|flag
vote up 0 vote down

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.)

link|flag
vote up 6 vote down

I can honestly claim I never "invented" bubble sort.

Nope, I went and "invented" bucket sort instead.

I'm so ashamed. :)

link|flag
1  
Just to mention that bucket sort is a kick-ass algorithm that gets a lot of bad rap in algorithms class (presumably because it “cheats” and has a more complicated asymptotic runtime, making it seem as though it breaks the magical nlogn barrier) but is really the best solution in many real-world situations (well, in combination, e.g. as radix sort). – Konrad Rudolph Oct 2 at 20:08
show 2 more comments
vote up 13 vote down

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.

It wasnt until two years later I got a book on programming in C and I discovered I had invented For and While loops!!

link|flag
2  
did you know that qbasic has a for/next, do/loop, while/wend? – Matthew Whited Oct 2 at 18:00
show 1 more comment
vote up 0 vote down

Lazy synchronization with asynchronous method calls, i.e. functional programming.

link|flag
vote up 0 vote down

I once wrote a recursive descent parser, without knowing the concept beforehand.

Among other - then unnamed to me - Design Patterns I invented the Visitor Pattern and the Facade Pattern (who did not?).

link|flag
vote up 2 vote down

How about... ARRAYS!

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.

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.

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.

link|flag
2  
"it's a haphazard, inconsistent thing" It's like the PHP of the 70s and 80s! – Matthew Crumley Nov 28 at 17:40
show 2 more comments
vote up 0 vote down

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.

link|flag
vote up 3 vote down

Like many others, I invented bubble sort, binary search, etc in high school.

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.

As a rule of thumb, if you come with a brilliant new algorithm, someone already thought of it in the 1960s.

link|flag
show 1 more comment
vote up 0 vote down

I "invented" linked lists as a junior in high school, armed only with the knowledge of pointers and classes (but not inheritance yet).

link|flag
vote up 1 vote down

I "invented" Bubble Sort, floor(), ceil(), and sleep() in C.

link|flag
vote up 4 vote down

√i - i√i = √2

(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)

link|flag
vote up 0 vote down

I happily invented the "One Time Pad".

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.

I found out later that this is a one time pad, and it is indeed unbreakable.

(I also invented steam engines as a kid, and a space shuttle with 3 booster rockets because, you know, its 1 better!)

link|flag
vote up 0 vote down

Canny (sp?) Line Detection in images (like photographs).

link|flag
vote up 6 vote down

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!

link|flag
vote up 1 vote down

I reinvented Insertion sort as a kid when sorting our-of-order volumes of the encyclopedia at school.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.