Simple DFS on the Complement of a Graph and on Partially Complemented Digraphs
Data Structures and Algorithms
2013-11-11 v1
Abstract
A complementation operation on a vertex of a digraph changes all outgoing arcs into non-arcs, and outgoing non-arcs into arcs. A partially complemented digraph is a digraph obtained from a sequence of vertex complement operations on . Dahlhaus et al. showed that, given an adjacency-list representation of , depth-first search (DFS) on can be performed in time, where is the number of vertices and is the number of edges in . To achieve this bound, their algorithm makes use of a somewhat complicated stack-like data structure to simulate the recursion stack, instead of implementing it directly as a recursive algorithm. We give a recursive algorithm that uses no complicated data-structures.
Cite
@article{arxiv.1311.1859,
title = {Simple DFS on the Complement of a Graph and on Partially Complemented Digraphs},
author = {Benson Joeris and Nathan Lindzey and Ross M. McConnell and Nissa Osheim},
journal= {arXiv preprint arXiv:1311.1859},
year = {2013}
}