
TL;DR
This paper introduces the first deterministic polynomial-time algorithm for solving the Hamiltonian cycle problem in general graphs, significantly advancing the understanding of this NP-complete problem.
Contribution
It presents a novel polynomial-time algorithm for Hamiltonian cycle detection in general graphs, including undirected, directed, and mixed types, with detailed complexity analysis.
Findings
Algorithm solves Hamiltonian cycle in polynomial time
Applicable to various graph types including undirected, directed, and mixed
Achieves polynomial space and time complexity with parallel computing enhancements
Abstract
In this paper we present the first deterministic polynomial time algorithm for determining the existence of a Hamiltonian cycle and finding a Hamiltonian cycle in general graphs. Our algorithm can also solve the Hamiltonian path problem in the traceable graphs. The space complexity of our algorithm is O(n^4). The time complexity are theoretically O(n^5*d^2) on average and O(n^6*d^2) in the worst case respectively, where d is the maximum degree of vertex. With parallel computing, the space complexity can be improved to O(n^3) and the time complexity to O(n^3*d^2) on average and O(n^4*d^2) in the worst case. We construct the corresponding path hologram transformed from the original graph and compute the path set, which is a collection of segment sets consisting of all the vertices located on the same segment level among all the longest basic paths, of every vertex with greedy strategy.…
Peer Reviews
No public reviews on file for this paper yet. If you reviewed it on a platform where reviews are public (OpenReview, ICLR, NeurIPS, ICML), you can paste yours below so the community can read it here.
Videos
No videos yet. Explain this paper in a talk, walkthrough, or lecture? Add one.
Taxonomy
TopicsComplexity and Algorithms in Graphs · Advanced Graph Theory Research · Algorithms and Data Compression
