Search found 1 match

by ilo12
Wed Dec 31, 2014 3:04 pm
Forum: Volume 3 (300-399)
Topic: 315 - Network
Replies: 68
Views: 33500

Re: 315 - Network

I'm working on this task since yesterday and still don't know what's wrong in my code

#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <sstream>

using namespace std;

struct node{

vector< int > edge;
int low;
int d;
bool art;

};

node graph[105];


int n ...

Go to advanced search