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

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

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 1 vote down

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.

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.

link|flag
vote up 1 vote down

As a kid I "invented" sine and cosine in order to figure our how to draw a circle point by point using QBasic.

link|flag
vote up 1 vote down

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

link|flag
vote up 1 vote down

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 Maximal Ratio Combining.

link|flag
vote up 1 vote down

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.

And I was so proud of myself...

link|flag
vote up 1 vote down

Stopping short.

link|flag
vote up 1 vote down

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 (a and b) and the area (K). In all of the time since then, I've never come across this algorithm elsewhere:

c2 = a2 + b2 -+ 2√(a2b2 - 4K2)

It's similar to the Law of Cosines, but instead of using an angle to find the third side, it uses the area.

(That's a minus-plus, not a ±. However, HTML doesn't have an entity to show it)

link|flag
vote up 1 vote down

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.

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

I invented a way of picking a random line from a file in a single pass through the file. The comments to this answer in StackOverflow show that it was a known technique long before I figured out my answer.

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.

link|flag
vote up 0 vote down

Median-Heaps :(

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
show 2 more comments
vote up 0 vote down

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

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

I re-created PHP's word_wrap here. Mine's grammatically better.

link|flag
vote up 0 vote down

1992: Auto-rebalancing AVL trees, where the re-balance is done on the tail of the recursive insert.

In a university assignment.

link|flag
vote up 0 vote down

Recursive descent parsing supporting left recursion.

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

Binary searches.

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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

Since library functions written in C seemed not good enough for me, I had to rewrite them in pure PHP (performance is for sissies ;)

Then I learned to check the docs at php.net more often...

link|flag
vote up 0 vote down

Huffman Coding, 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.

Carry Save Adder

link|flag
vote up 0 vote down

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

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

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.

Sometime in the next year, I was introduced to the Gang of Four Design Patterns book. That burst my bubble.

link|flag
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 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

Your Answer

Get an OpenID
or

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