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

I invented the Internet. ;)

On a more serious note:
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.

link|flag
4  
I thought that was Al Gore? – Matthew Whited Oct 2 at 18:01
vote up 12 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
1  
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 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 10 vote down

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.

Our instructor then explained Big-Oh notation (and I believe the implementation of quick-sort) and the rest, as they say, is history!

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

Recursive descent parsing.

link|flag
show 1 more comment
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 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 6 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 6 vote down

Bresenham's line algorithm.

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.

I was very proud of myself, but my parents and siblings just didn't understand how cool it was.

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.

Algorithms are so cool...

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

Monads.

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

@martinatime

Math is generally considered "discovered" as opposed to invented. And programming and related studies are considered applied math.

I've generally seen the opposite. e.g. Newton invented calculus. On the other hand, natural properties are generally "discovered." e.g. Pythagoras discovered the Pythagorean theorem.

link|flag
3  
Answers should not be addressed to other answers; only to the question. That's why the order of answers can change as people upvote and downvote, and why comments exist. – jprete Oct 2 at 18:06
show 4 more comments
vote up 3 vote down

Enigma machine (substitution, altering & rotating cipher).

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

I "invented" the triangular number formula in 5th grade -- and then proceeded to spend a real lot of time trying to promote the operators using logarithms to compute factorials.

Early in programming, I "invented" the selection sort -- made way more sense to me than bubble sort.

Back in the late 90s, I invented double-interleaved firmware-generated PWM to boost apparent regulation resolution. Patent #6252373.

link|flag
4  
Clearly you are not familiar with our patent system. ;) – Hafthor Feb 21 at 6:34
show 1 more comment
vote up 3 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 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 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 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 2 vote down

@Ryan

(Granted, none of these were as formally defined when I did them...)

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

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. If statements have been around since at least 1978 (K&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.

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.

link|flag
3  
um i think he means that when HE did them, HE didn't formally define them. – Epaga May 16 at 11:52
1  
Answers should not be addressed to other answers; only to the question. That's why the order of answers can change as people upvote and downvote, and why comments exist. – jprete Oct 2 at 18:07
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 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 1 vote down

Shunting Yard Algorithm

Mean of Circular Quantities

Language Oriented Programming

Division - back in 2nd grade haha

link|flag
vote up 1 vote down

(Granted, none of these were as formally defined when I did them...)

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.

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

@Ross

Amusingly enough, I wrote the original version of the word_wrap function in PHP, before it became part of the core PHP function set.

It was originally written because I needed to be able to create quoted text areas for an online messaging system.

Extra amusing - It's listed as an alternative in the comments to PHP's word_wrap.

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

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

link|flag
vote up 1 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
show 2 more comments
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
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.