vote up 19 vote down star
10

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

87 Answers

1 2 3 next
vote up 36 vote down check

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.

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.

So, I kind of invented algebra.

x^2 + x + (x+1) = x^2 + 2x + 1 = (x+1)^2

link|flag
11  
Me too! Only I went with a geometric explanation: you have a square (say 4x4), you add one row to it (making it a 5x4 rectangle), and then you add a column to finish the square (5x5). – mmyers Dec 5 '08 at 22:47
2  
I "invented" that one much later (sometime after having taken Calculus). So I was kind of fascinated that in the discrete/integer domain, the derivative of x^2 is 2x + 1. In the traditional real number domain, the + 1 "approaches" zero and becomes just 2x. – C. Dragon 76 Dec 5 '08 at 22:52
2  
lol, seems much obvious now... (a+b)^2 = a^2 + 2ab + b^2 ... but when I was 10 I thought I discovered something new XD – kentaromiura Jun 15 at 6:58
show 1 more comment
vote up 0 vote down

Not an algorithm, but I invented high-order-functions (specifically map).

I also invented versioned FUSE (file system in user space) in a shamefully ugly way (stat() everywhere).

link|flag
vote up 0 vote down

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

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

I was working with QBASIC and was too dumb to know what a SUB was.

So I figured out structured programming to deal with my spaghetti code.

Then, later, I started figuring out how to actually pass parameters internally.

link|flag
vote up 0 vote down

I invented modern supercomputing/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).

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.

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

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.

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.

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

This one:

func<int> all
link|flag
vote up 0 vote down

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!

link|flag
vote up 0 vote down

Snapshot isolation

I wrote an in-memory database which can handle multiple concurrent transactions (for a hobby project). 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 serializable, but anyways quite good. Afterwards I did some digging and found out that I had implemented snapshot isolation and multiversion concurrency control.

link|flag
vote up 1 vote down

Stopping short.

link|flag
vote up 0 vote down

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.

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

link|flag
vote up 0 vote down

Spent a few days writing an algorithm to shuffle Arrays when I found several, more concisely written methods already in existence!

link|flag
vote up 3 vote down

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

link|flag
vote up 4 vote down

I "invented" the infinite loop because of never updating the termination condition.

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++;
}
link|flag
7  
bool girlfriend = ""; .... well, there's your problem! – Mike Robinson Oct 2 at 20:12
4  
There's also the problem that if you get over your crush (crush == ""), the loop will exit, even though daysAlone should still increment. – expedient Oct 2 at 20:20
1  
that is funny. and I needed a good chuckle just now. – alesplin Oct 2 at 20:51
show 1 more comment
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 0 vote down

I invented display lists in 1980 when I was in 8th grade for games that I was writing.

I invented non-recursive flood fill in 1983 when I was a junior in high school as part of a graphics package I was writing.

I invented divide and conquer 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).

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

The ones that have stuck with me:

  • LR parsing
  • Spectral Methods (a type of numerical solver)
  • 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)
link|flag
vote up 0 vote down

Tabular LR parsing.

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

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.

The quotes are because you do any actual popping - you don't have a stack, only a table.

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

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.

Also, I never actually implemented it anyway.

link|flag
vote up 0 vote down

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!".

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.

Since then I've never done any more work on number theory again.

link|flag
vote up 11 vote down

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

By the time I got home (almost exactly 20 minutes), I had completely 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.

I don't know what terms I put into Google that night which revealed the existence of the Skip List, but let me assure you I was crushed.

On the plus side, my algorithms were basically identical to Bill Pugh's, so at least I reinvented it properly. Small mercies.

link|flag
vote up 0 vote down

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! :(

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

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

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
1 2 3 next

Your Answer

Get an OpenID
or

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