예제 #1
0
파일: Graph.cpp 프로젝트: ajuanr/JR2250728
bool operator< (const Edge &lhs, const Edge &rhs) {
    if (lhs.Src() < rhs.Src()) return true;
    if (rhs.Src() < lhs.Src()) return false;
    return lhs.Dest() < rhs.Dest();
}
예제 #2
0
파일: Graph.cpp 프로젝트: ajuanr/JR2250728
void Graph::addEdge(const Edge &e) {
    graph[e.Src()].insert(e);
}