Giriş
Şu satırı dahil ederiz.
Örnek
Şöyle yaparız.
Şu satırı dahil ederiz.
#include <boost/graph/topological_sort.hpp>
depth_first_visit() çağrısından farklı olabilir.Örnek
Şöyle yaparız.
using Graph = boost::adjacency_list<>;
...
// sample data
Graph g = ...;
std::vector<Vertex> reverse_topo;
boost::topological_sort(g, back_inserter(reverse_topo));
Hiç yorum yok:
Yorum Gönder