vix.ing · top · new · best · stats · spec

Efficient Enumeration of Chordless Cycles

2013/09/04 by Dias, Elisângela Silva, Castonguay, Diane, Longo, Humberto +1
#Data Structures and Algorithms (cs.DS) #Discrete Mathematics (cs.DM) #FOS: Computer and information sciences

paper · doi:10.48550/arxiv.1309.1051

Abstract

In a finite undirected simple graph, a \it chordless cycle is an induced subgraph which is a cycle. We propose two algorithms to enumerate all chordless cycles of such a graph. Compared to other similar algorithms, the proposed algorithms have the advantage of finding each chordless cycle only once. To ensure this, we introduced the concepts of vertex labeling and initial valid vertex triplet. To guarantee that the expansion of a given chordless path will always lead to a chordless cycle, we use a breadth-first search in a subgraph obtained by the elimination of many of the vertices from the original graph. The resulting algorithm has time complexity O(n + m) in the output size, where n is the number of vertices and m is the number of edges.

Related