After deciding that adjacency matrix won't work out for 80513 nodes and 5899882 edges I've decided to apply adjacency list. It's my first implementation of adjacency list and basically I've decided to apply vector of vectors method.
Thus, for example, the vectorOfVectors[5] will be contain the neighbours of include the neighbours node 5. The dataset I'm using can be found here
Currently I've written this code and it works without any error, however on my computer it takes 26 secs (i5 2.4 with 6 gb ram, running Win7). I was wondering if my code could be improved in order to reduce the allocation speed.
PS: I'm using fstream library and reading from a .csv file.
#include <iostream>
#include <fstream>
#include <vector>
#include <cstdlib>
using namespace std;
int main()
{
ifstream file("edges.csv");
string word="",data="";
getline(file,word);
int arrTemp[3];
int numberOfNodes=atoi(word.c_str());
vector<int>temp;
vector< vector<int> >adjacencyList;
for(int i=0;i<numberOfNodes;i++)
{
adjacencyList.push_back(temp);
}
while(file.good() && getline(file,word))
{
//cout<<word<<endl;
if(word.size()>0)
{
for(int i=0;i<3;i++)
{
int cutFrom=word.find_first_of(',');
arrTemp[i]=atoi(word.substr(0,cutFrom).c_str());
word=word.substr(cutFrom+1,word.length());
}
//cout<<arrTemp[0]<<" "<<arrTemp[1]<<endl;
adjacencyList[arrTemp[0]-1].push_back(arrTemp[1]-1);
}
else
break;
}
cout<<"Vector size:"<<adjacencyList[1].size()<<endl;
return 0;
}
adjacency list. And please please use more spaces in your code. – Hindol Apr 15 '12 at 16:49