This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Graph implementation following tutorial http://www.geeksforgeeks.org/graph-and-its-representations/ | |
*/ | |
#include<iostream> | |
#include<cstdlib> | |
using namespace std; | |
//struct for an adjacency list node | |
struct AdjListNode{ | |
int data; |