vote up 2 vote down star

How can i tell if this algorithm has already been invented?

The algorithm:

take the end node, set it's calculated cost to end to zero, and add it to a list of nodes who's neighbors need checking
while we aren't done do this
    for each node in the list to check, do this
    	the calculated cost is the cost it takes to get to the node who's neighbor we are considering plus the cost of traveling from that node to this node
    	if this node doesnt already have a calculated cost for getting to the endpoint
    	    add it to the list of nodes to check 
    		add a mark on the node indicating the calculated cost
    	otherwise,
    		if the new calculated cost is below the one already on this node
    			add it to the list of nodes to check
    			mark the route cost entry with the new cost
    if there are no more nodes to check then
    	we are done with this loop

ready a queue of nodes
keep a current node in mind and set it to the start node for now
while we aren't at the end node do
    for each node in the current node's neighbors, do this
    	keep a best node in mind and set it to the current one right now
    	and also keep best cost in mind and set it to infinity for now
    	if the neighbor has a listing for our end node then
    		if the calculated cost for getting to the end from the neighbor plus the cost of going from the current node to the neighbor is lower than the best cost
    			if we haven't already been to this node before
    				set this neighbor as the best node
    				set this calculated cost as the best one
    	add the current node to our list of nodes 
    	set our current node to the best found node
    add the end node to the list
we're done
flag

1  
Of course, if you're willing to forfeit all patentable rights, then you can publish. – paxdiablo Aug 26 at 6:24
1  
@RCIX, compare it with Dijkstra's algorithm. en.wikipedia.org/wiki/Dijkstra%27s_algorithm/… – Nick D Aug 26 at 6:32
1  
That's exactly what Dijkstra's algorithm does: It computes the shortest path between two given nodes (or actually, between a start node and all other nodes). – Martin B Aug 26 at 6:43
1  
RCIX: it would be easier to understand your algorithm if it was written in 20 simple lines "pseudo-code" (Python) instead of in 200 lines of Java/C#. Given that we could tell you if we're familiar with it. – yairchu Aug 26 at 6:53
1  
I should have read the comments before posting an answer. A pseudocode (or even Python) snippet would have been much easier to recognize, but regardless, this is just an implementation of Dijkstra's algorithm except you begin at "end" rather than "start". – Cybis Aug 26 at 7:15
show 15 more comments

closed as no longer relevant by Ngu Soon Hui, paxdiablo, Sinan Ünür, gnovice, dmckee Aug 27 at 16:05

2 Answers

vote up 6 vote down check

This looks very much like Dijkstra's algorithm. There might be some minor differences and I'm not about to prove whether your algorithm is correct. From what I can tell, you loop through each node starting at the "end", loop through each connecting node out from the current node, and keep track of the minimum distance from each connecting node to "end".

Personally, I believe simple algorithms like this should be unpatentable, because any shortest path algorithm you come up with will likely work in a similar way*. Patents are for protecting your idea, not for preventing other people from independently arriving at a similar solution for a similar problem.

*EDIT: Unless, of course, you invent some crazy complex heuristic meant for quickly processing a special case of the "shortest path" problem.

link|flag
Patents are not for protecting your idea, they're not for ideas at all (ideally). They are a short-term monopolies on an invention, meant to convince people to carry out research and invent more stuff. Sometimes, it even works as intended :-) – paxdiablo Aug 26 at 7:48
Updated my code with a pseudocode version of my algorithm. – RCIX Aug 26 at 7:53
Hmm... I think your pseudocode version is even harder to understand. It's certainly ambiguous. Still, this looks like Dijkstra's. Granted, your "list of nodes whose neighbors need checking" isn't exactly what's spelled out in the Wikipedia article, but it serves precisely the same purpose as a "visited nodes list" - to keep track of the fringe (although, dijkstra's doesn't require a visited nodes list - it just needs to mark nodes as visited or not. Whether you use a list for that is just an implementation detail). – Cybis Aug 26 at 8:44
I looked at the code again in your revision history (it's 2:00am and I can't get to sleep - I thought reading code would help) - and I think your algorithm does unnecessary processing. Any two nodes in "nodesRemaining" could be neighbors - hence, if a smaller "cost" is found a node that already exists in "nodesRemaining" would be added to "nodesRemainingTemp", thereby causing it and its neighbors to be processed at least twice. – Cybis Aug 26 at 9:02
WE only process a node if we found a more efficient route to that node than the one already there. If we found a route that's faster to one neighbor, it's possible we can also get to that other neighbor faster. We also don't know what nodes haven't been checked at all, so we can't cut any node from consideration. – RCIX Aug 26 at 9:14
show 4 more comments
vote up 5 vote down

I work for a patent search firm (sort of) as an expert. Let me restate the problem you face:

"Has my problem been solved before by a method which is exactly the same as the one I propose?"

As you can see, there are two parts to this question. The first part of whether the problem was solved can best be answered by scientific literature (relevant journals) only. US Patent literature is a very bad resource for answering this part. This is so because for any significant problem there would be hundreds of patents with greatly varying levels of relevance to the exact problem at hand. Further, there will be patents claiming inventions which will be very generalistic and it will be extremely difficult to say with certainty whether that patent covers your method as well.

My advice to you would be to refer to scientific literature or best still, talk to a professor or a research associate at a university working in your field. Unless your aim is to patent your method, a patent search firm will be expensive and not relevant.

link|flag

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