mercredi 6 décembre 2017

How to find an object in table C++

i have function which finds a number in a table:

int find(int arrf[], int len, int seek){
for (int i = 0; i < len; ++i) if (arrf[i] == seek) return i;
return -1;}

Is there a faster way to do this?

Aucun commentaire:

Enregistrer un commentaire