Skip to content

Instantly share code, notes, and snippets.

@IlyaKornakov
IlyaKornakov / graph.h
Created January 30, 2012 20:06
Tarjan Subtree Decomposition
#ifndef GRAPH_H_
#define GRAPH_H_
#include <algorithm>
#include <cstdio>
#include <string>
#include <stdexcept>
namespace sp {
class Graph {