unique texfile strings

Started by
0 comments, last by alvaro 11 years, 5 months ago
Hi,

I'm strugging/ staring blind at a fairly simple 'issue'.

I have an array of strings and want to find out the number of unique strings, the strings are stored in tempTexFiles[]:

[source lang="cpp"] int pNrUniqueMaterials = 1;
bool NEW = false;
for(int texcount=1;texcount<pNrMaterials;++texcount)
{
for(int tlist=0;tlist<pNrMaterials;++tlist)
{
if(tempTexFiles[texcount] == tempTexFiles[tlist]) break;
else NEW = true;
}
if(NEW)
{
pNrUniqueMaterials++;
NEW = false;
}
}

mNrMaterials = pNrUniqueMaterials;
[/source]

Probably something to simple for words, been staring at it for an hour.

The results now is 5 and should be 3....

Any help is really appriciated.

greets,
Cris

Crealysm game & engine development: http://www.crealysm.com

Looking for a passionate, disciplined and structured producer? PM me

Advertisement
Can this be moved to General Programming or For Beginners? It has nothing to do with graphics...

Your algorithm is broken. As long as not all strings are identical, NEW will always be true and you will end up with pNrUniqueMaterials == pNrMaterials. A correct algorithm in the style of yours would go something like this:
int pNrUniqueMaterials = 0;
for (int i = 0; i < pNrMaterials; ++i) {
if (std::find(tempTexFiles, tempTexFiles+i, tempTexFiles) == tempTexFiles+i)
++pNrUniqueMaterials;
}


If you have a large number of strings and this takes too long, you can do better, for instance by using an unordered_set.

This topic is closed to new replies.

Advertisement