All pastes #2075261 Raw Edit

Mine

public cpp v1 · immutable
#2075261 ·published 2011-06-05 22:28 UTC
rendered paste body
#ifndef GRAPH_HEADER_H#define GRAPH_HEADER_H//graph_header.h by Cal Zabel for CS163 Program 5#include <iostream>#include <string>using namespace std;struct vertex{	//constructor to initialize variables	vertex();	//name of the class	string className;	bool visit;	bool used;	//pointer to the attached node list	node * head;};//edge list is made of these nodesstruct node {	//which vertex is it connected to	vertex * connected;	//next spot in the list	node * next;};#endif