The hamiltonian-cycle tag has no wiki summary.
2
votes
1answer
141 views
Algorithm for finding a Hamilton Path
I am referring to Skienna's Book on Algorithms.
The problem of testing whether a graph G contains a Hamiltonian path is NP-hard, where a Hamiltonian path P is a path that visits each vertex exactly ...
0
votes
0answers
89 views
Finding all hamiltonian cycles
I'm trying to implement a method for adding all possible Hamiltonian cycles to a list using recursion. So far my stopping condition isn't sufficient and I get "OutOfMemoryError: Java heap space" in ...
8
votes
3answers
416 views
How to detect if the given graph has a cycle containing all of its nodes? Does the suggested algorithm have any flaws?
I have a connected, non-directed, graph with N nodes and 2N-3 edges. You can consider the graph as it is built onto an existing initial graph, which has 3 nodes and 3 edges. Every node added onto the ...
2
votes
2answers
307 views
Algorithm for Enumerating Hamiltonian Cycles of a Complete Graph (Permutations where loops, reverses, wrap-arounds or repeats don't count)
I want to generate all the Hamiltonian Cycles of a complete undirected graph (permutations of a set where loops and reverses count as duplicates, and are left out).
For example, permutations of ...
0
votes
0answers
65 views
Trying to understand Hamiltonicity solutions?
Edit: I've found a link to a backtracking algorithm here, http://www.geeksforgeeks.org/archives/19092, and I understand what it does. I'd like to verify that my analysis of its running time is ...
1
vote
2answers
142 views
what whould be suitable algorithm?
I am trying to do c++ program.I am trying to do problem in which i have numbers of points. Now i need to find the path that goes through all the points. This is not actually TSP because as per my ...
0
votes
0answers
86 views
hamiltonian cycle v^2 algorithm?
Is there a algorithm that will find as long as possible hamiltonian cycles in v^2 time. I am running a program that needs to find cycles on a sparse graph (4v edges at maximum), and according to my ...
1
vote
1answer
531 views
Program to find number of hamiltonian paths in a graph given start and end points
Given a graph with n² pathing nodes, and given that the starting node is always in the top right corner (point A) and the ending node is always in the bottom right corner (point B), I need to write a ...
0
votes
0answers
59 views
Ant Colony Optimization Algorithm and Hamiltonian Cycle [closed]
Does Ant Colony Optimization Algorithm solves for Hamiltonian Cycle?
3
votes
3answers
305 views
Palmer's Algorithm for Hamiltonian cycles
In a "dense" graph, I am trying to construct a Hamiltonian cycle using Palmer's Algorithm. However, I need more explanation for this algorithm because it does not work with me when I implement it. It ...
1
vote
2answers
873 views
Checking if a Hamilton Cycle exists in a dense graph
A few definitions first:
Definition 1
A graph G = (V, E) is called ``dense'' if for each pair of non-adjacent vertices u and v, d(u) + d(v)>=n
where n = |V| and d(*) denotes the degree of the ...
0
votes
1answer
113 views
What is the complexity of the following algorithm?
This algorithm solves Hamiltonian path problem. G is a unoriented graph, v starting vertex,
G.size() size of the graph, G.get(v).gV all the neighbor verices of the current vertex.
static private ...
1
vote
0answers
622 views
Detect cycles in undirected graph using boost graph library
I've been stock since yesterday with this problem. Unfurturenately/furturenately this problem makes only about 0.5% of the my super huge (for me, a c++ newbie) algorithm thus the need for a library of ...
2
votes
4answers
462 views
Hamiltonian paths & social graph algorithm
I have a random undirected social graph.
I want to find a Hamiltonian path if possible. Or if not possible (or not possible to know if possible in polynomial time) a series of paths. In this "series ...
1
vote
1answer
328 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 ...
0
votes
2answers
182 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 ...
1
vote
3answers
1k 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 ...
5
votes
3answers
629 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 ...
1
vote
1answer
121 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 ...
0
votes
1answer
259 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 ...
2
votes
1answer
844 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 ...
3
votes
2answers
881 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 ...
2
votes
2answers
822 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 ...
5
votes
4answers
1k 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 ...
3
votes
2answers
1k 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 ...
0
votes
1answer
1k 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
369 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 ...
5
votes
2answers
388 views
Finding Hamiltonian cycles in cubic planar graphs
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 for asymptotically ...
5
votes
1answer
4k 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 ...
8
votes
2answers
4k 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

