Skip to content

Instantly share code, notes, and snippets.

View benapie's full-sized avatar

Ben Napier benapie

View GitHub Profile
@benapie
benapie / prims_algorithm.cpp
Last active March 13, 2019 19:37
Prim's algorithm using cgraph.
//
// Created by Ben Napier on 08/03/2019.
//
#include <iostream>
#include "Graph.h"
int main() {
// Lets implement a bit of Prim's...
// First set up our graph.
Graph graph;