In C++ I am using a nested for loop to match up pairs of objects that have the same names. I expected the program to take a long time to run (comparing thousands of strings) but as it progresses, the program runs slower and slower. It compares the first 20% of the strings within a few minutes, but once it reaches about 30% complete it is taking almost 60 seconds to check one string against the others.
I have my "new data" which contains proper values for the fields "feas", "eff" and "numIdeas", and my old data which shares the "data" field in common with its matching "new" partner. The new data and the old data are not in the same order and I can't sort them because the order that they are currently in is meaningful. I figured the best way would be to just "brute force" through it. Like I said, they are in no particular order so the extreme slowing down of the loop iterations was confusing to me. As far as I can tell the speed should stay constant.
for(int i=0; i< newDO.getNumItems(); i++)
{
Item newItem = newDO.getItem(i);
for(int k=0; k < oldDO.getNumItems(); k++)
{
Item oldItem = oldDO.getItem(k);
if(oldItem.getType()==1)
{
bool same = testStrings(oldItem.getData(), newItem.getData());
if(same)
{
oldItem.setFeas(newItem.getFeas());
oldItem.setEff(newItem.getEff());
oldItem.setNumIdeas(newItem.getNumIdeas());
break;
}
}
}
}
I didn't write this testStrings function but I didn't see any real issue with it. This function takes the strings (which are about 5-20 chars) and takes out any spaces and '('.
(As I understand it the person before me had imported thousands of files before realizing that the function that was parsing them wasn't removing '(' properly from some of the data, so his fix for this was to just ignore them when checking if strings were equal).
bool testStrings(string s1, string s2)
{
string s1def ="";
for(int i=0; i<s1.length(); i++)
{
if(s1[i]!=' ' || s1[i]!=')'){s1def+=s1[i];}
}
string s2def = "";
for(int i=0; i<s2.length(); i++)
{
if(s2[i]!=' ' || s2[i]!=')'){s2def+=s2[i];}
}
if(s1def == s2def){return true;}
else{return false;}
}
Any insight would be really helpful.
Thanks.