|
Παρουσίαση με Ετικέτες
Όλες οι Ετικέτε... » Max » maximum » edmonds (RSS)
-
I post my implementation of the Edmonds-Karp Algorithm. link to pastebin http://pastebin.com/HrxTvN4m#include <iostream>#include <climits>#define MAXN 100using namespace std;typedef struct node_t node_t;typedef struct edge_t edge_t;struct edge_t { int cap, ni,i;};struct node_t{ int i; edge_t ...
|
|
|