up vote 67 down vote favorite
28
share [g+] share [fb]

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?

link|improve this question
17  
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
show 1 more comment
feedback

closed as off topic by Kev Jun 12 '11 at 16:45

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

117 Answers

1 2 3 4
up vote 81 down vote accepted

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+1)2 = x2 + x + (x+1)
link|improve this answer
48  
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). – Michael Myers Dec 5 '08 at 22:47
4  
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 '09 at 6:58
25  
You guys must have been a big hit with the girls. – Ishmael Mar 22 '10 at 21:19
3  
@Ishmael, just the girls who were as interesting to talk to as they were biologically bound to have vaginas and breasts. – eyelidlessness Jun 12 '10 at 10:06
show 3 more comments
feedback

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|improve this answer
8  
It's always disappointing to realize you arrived at an idea second (even if it was only because you were born after the original inventor), but you should at least take solace in the fact that great minds think alike. The fact that you had the intellectual capacity and drive to come up with the idea completely independently of the original inventor means a lot. – Lèse majesté Aug 28 '10 at 13:13
feedback

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

string crush = "Meg";
string girlfriend = "";
int daysAlone = 1;
while( crush != girlfriend )
{
  Output( "Days alone: " + daysAlone );
  SeeGirl(crush);
  TellSelf("Try to talk to her again tomorrow");
  daysAlone++;
}
link|improve this answer
26  
bool girlfriend = ""; .... well, there's your problem! – Mike Robinson Oct 2 '09 at 20:12
9  
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 '09 at 20:20
1  
that is funny. and I needed a good chuckle just now. – alesplin Oct 2 '09 at 20:51
7  
It is funny, but it's also sad that none of you thought to suggest refactoring. Replace that call to TellSelf(it's deprecated, you know), with the much more effective ApproachGirl(). Really. It's the recommended practice. I think Josh Bloch has a tip for it: "Prefer Approaching Over Watching From A Distance". – CPerkins Jan 6 '10 at 21:42
3  
Anybody else notice that you'll eventually be a negative number of daysAlone? – Joe D Sep 1 '10 at 19:50
show 3 more comments
feedback

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|improve this answer
7  
I thought that was Al Gore? – Matthew Whited Oct 2 '09 at 18:01
9  
I don't think Al Gore ever claimed he invented the internet. – Breton Jan 21 '10 at 23:21
4  
To be exact: The inventor of the environment and first emperor of the moon, Al Gore. – Daniel Earwicker Apr 5 '10 at 0:04
show 1 more comment
feedback

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|improve this answer
6  
did you know that qbasic has a for/next, do/loop, while/wend? – Matthew Whited Oct 2 '09 at 18:00
2  
I did not at the time, it was non-obvious that such keywords existed or how to use them. I had If and Goto, and managed to do a lot of work with them. – Karl Oct 4 '09 at 1:21
2  
This is why i hate GOTO. – Behrooz Aug 28 '10 at 13:00
feedback

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|improve this answer
1  
95 * 11 != 9 (9+5) 5 = 9145 ;) That works only if their sum is less than 10. – Technofreak Feb 5 '10 at 7:02
19  
If the sum is more than 10, you carry over to next digit. 95 * 11 = 9 (9+5) 5 = 9 (14) 5 = (9+1) (4) 5 = 1045. – Abhinav Sarkar Jun 11 '10 at 6:57
feedback

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|improve this answer
12  
No, it's probably pretty good for anyone. – Ian Boyd Feb 14 '10 at 15:09
feedback

Recursive descent parsing.

link|improve this answer
show 4 more comments
feedback

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|improve this answer
4  
That reminds me, I 'invented' insertion sort. They showed us bubble sort instead, for some reason. – Darius Bacon Dec 5 '08 at 22:50
feedback

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|improve this answer
show 1 more comment
feedback

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|improve this answer
3  
lol at "boss of all the others". great answer, btw – Michael Easter Oct 2 '09 at 21:36
feedback

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

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

I'm so ashamed. :)

link|improve this answer
6  
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 '09 at 20:08
show 2 more comments
feedback

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|improve this answer
3  
Cute story. Hope her name was Dinah. – Jeff Meatball Yang Feb 6 '10 at 3:25
1  
Having "encountered" something first doesn't make one precocious. Now, if she had understood the principle of the centrifugal force, before being taught it in a classroom, then that would have been impressive. – Lèse majesté Aug 28 '10 at 13:28
show 1 more comment
feedback

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|improve this answer
show 2 more comments
feedback

√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|improve this answer
show 1 more comment
feedback

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|improve this answer
2  
Actually, if you come with a brilliant new algorithm, Gauss already thought of it. cf. Fast Fourier Transform, for example. – Jason Oct 3 '09 at 0:51
show 1 more comment
feedback

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|improve this answer
13  
Clearly you are not familiar with our patent system. ;) – Hafthor Feb 21 '09 at 6:34
show 2 more comments
feedback

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|improve this answer
show 2 more comments
feedback

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|improve this answer
show 1 more comment
feedback

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.

link|improve this answer
2  
I did that too. – erikkallen Jul 3 '10 at 10:20
feedback

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.

link|improve this answer
feedback

Enigma machine (substitution, altering & rotating cipher).

link|improve this answer
3  
Me too. My 2nd semester at college. And I was convinced this was an unbreakable cipher and I would win a Nobel prize, become a billionaire an marry a supermodel. – sal Oct 2 '09 at 20:14
9  
@sal because that's exactly what hapened to Turing? ;-) – Steven A. Lowe Apr 5 '10 at 12:44
feedback

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|improve this answer
1  
-1, still using BASIC past the age of 7 or 8 – Kevin Panko Oct 2 '09 at 21:20
5  
"it's a haphazard, inconsistent thing" It's like the PHP of the 70s and 80s! – Matthew Crumley Nov 28 '09 at 17:40
show 2 more comments
feedback

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|improve this answer
feedback

@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|improve this answer
9  
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 '09 at 18:06
6  
jprete, comments have not always been available on Stack Overflow. Note that my answer was posted in August 2008, the same month that the site launched. New answers were the only way to comment. I see no value in going back and deleting all my existing "comment" answers. I really don't understand why you (and others) are digging into old questions to criticize a practice that predates comments. – Derek Park Oct 7 '09 at 21:24
show 4 more comments
feedback

@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|improve this answer
feedback

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|improve this answer
show 2 more comments
feedback

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|improve this answer
feedback

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

link|improve this answer
feedback
1 2 3 4

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