I've written DFS, and it works, but the code feels like its badly designed. The Graph is implemented as an array of nodes with a list of edges. The assignment is to print the nodes in depth first ...
I'm currently doing a project for my computational physics course which puts out a set of data every now and then which basically consists of a set of x points at regular intervals, and the ...