So I have the following problem:
Given a grid of x by y dimensions, calculate the number of routes through it that start in one corner (let's say top left) and end in another (bottom right) and pass through every vertex.
So my current method just brute forces it by just trying every possible path and counting the ones that reach the finish and traverse every node. While it works, it's O(n^2) and gets unbelievably slow extremely quickly. I'm not sure how to do it combinatorially because of the requirement that the path traverse every vertex.
I've looked up more complex algorithms, and Hierholzer's algorithm for calculating Eulerian paths seems somewhat related but not perfect because nodes cannot be traversed more than once for this.
As it is, my program works, but badly, and I would like to make it more efficient. Are there better algorithms I could be using?
Edit Thanks for the answers so far. Just to clarify, all nodes in the 2d grid are connected by n/e/s/w
Also, the grid does not have to be a square
O(n^2)– Jan Dvorak Jan 9 at 23:30