Tagged Questions
The hamiltonian-cycle tag has no wiki summary.
5
votes
2answers
3k views
What is dynamic programming algorithm for finding a Hamiltonian cycle?
What is dynamic programming algorithm for finding a Hamiltonian cycle in a undirected graph?
I have seen somewhere that there exists a algorithm with O(n*2^n) time complextity
4
votes
3answers
473 views
Can someone introduce me to the Hamiltonian Cycle?
I have this project where I have to come up with Java source code implementing the Hamiltonian cycle.
I searched on google and at least now I know what a Hamiltonian cycle is, path that passes through ...
4
votes
2answers
264 views
Finding Hamiltonian cycles in cubic planar graphs
The title says it all. I have relatively small (40-80 nodes) cubic (3-regular) planar graphs, and I have to decide their Hamiltonicity. I am aware of the fact that this task is NP-complete, but I hope ...
2
votes
3answers
147 views
Algorithm to find a random Hamiltonian path in a grid?
I'm looking for an efficient algorithm that is able to find an as random as possible Hamiltonian path in a bidirectional N*M grid.
Does anyone know where I can find, or how to go about constructing ...
2
votes
1answer
600 views
How to solve a Google Code Jam problem?
This question actually rephrases that one. The code jam problem is the following:
You are given a complete undirected graph with N nodes and K "forbidden" edges. N <= 300, K <= 15. Find the ...
1
vote
1answer
31 views
Testing a Hamiltonian Path finder implementation
I am implementing an algorithm which finds an optimal Hamiltonian path in a directed graph. I have implemented an algorithm which appears to work reasonably well, however I am not entirely sure if ...
1
vote
1answer
66 views
non-Hamilton path elimination in a graph
Assume that we have a random graph. How do you remove or add edges in the minimum number of steps such that every edge in the resulting graph would be in a Hamilton path?
I would really appreciate if ...
1
vote
1answer
267 views
GCJ - Hamiltonian Cycles
Code jam problem is the following:
You are given a complete undirected graph with N nodes and K "forbidden" edges. N <= 300, K <= 15. Find the number of Hamiltonian cycles in the graph that do ...
1
vote
2answers
267 views
Enumerate *all* hamiltonian paths
I know this has been asked before, but I did not find its answer in any of the posts. Can someone please suggest me an algorithm which enumerates ALL Hamiltonian paths in a graph?
A little ...
1
vote
2answers
348 views
Finding the hamiltonian path in a directed cyclic graph
i want to know if there is an algorithm to find the longest cyclic path in a directed weighted graph (i think this i a problem of finding the largest Hamiltonian sub-graph).
I need to start from one ...
1
vote
1answer
2k views
How to implement an adjacency matrix in java producing hamilton cycles
I am trying to implement an adjacency matrix in java that will produce an output for a Hamiltonian cycle, which can then be solved with different algorithms such as kruskurals, djikstras and the 2opt ...
0
votes
2answers
78 views
Given some words, find a sequence such that any adjacent words of the seq cannot have same characters
Given some words,
e.g.
banana , cat , dog, elephant, type, middle, lake
find a sequence such that
(1) every word is on the sequence
(2) any adjacent words cannot have same characters.
If the ...
0
votes
3answers
228 views
Reduction algorithm from the Hamiltonian cycle
I believe that the Hamiltonian cycle problem can be summed up as the following:
Given an undirected graph G = (V, E), a
Hamiltonian circuit is a tour in G passing through
every vertex of G ...
0
votes
1answer
94 views
Prunning Strategies to compute the total number of hamiltonian paths in 2D grid
I was recently trying to come up with the total number of hamiltonian paths (basically starting for start vertex, visit each node exaactly once and reach the end vertex). Brute force dfs goes for a ...
0
votes
1answer
577 views
Problem in finding Hamiltonian circuit for TSP problem
Hi there
Im working on a project which needs to solve the TSP problem. The thing i need here is that how i can find the Hamiltonian circuits in the graph. In fact I know how to do this in the real ...
0
votes
1answer
248 views
Is there an algorithm for computing permutation of distances?
This is related to travelling salesman problem. First all permutations need to be generated and then the destination (same as origin) attached. I.e.:
1)
abcd
abdc
....
2)
abcda
abdca
....a
I have ...