iam writing a little program with GUI in C++ and Qt. It is supposed to be similar to a vocabulary trainer. I will use it for my own studying.
I do have a QList of objects in it(name and description as string for example).
Then i have a second QList with int s in it. For every object in my other list, an int is in this list. Start value is 50 for every object; if user clicks correct, it gets decremented, vice versa. So a object with value 70 shall be more often shown to the user, than an object with value 30. So in the correct answer method i incr/decr it, sort the QList and use my random algorithm:
if(packList.count()==0) // the QList with objects
return;
int Min = 0;
int Max = packList.count()-1; // -1 because i need the index
qsrand(QTime::currentTime().msec());
if (Min > Max)
{
int Temp = Min;
Min = Max;
Max = Temp;
}
int randNum = ((rand()%(Max-Min+1))+Min);
setPage(randNum); // randNum will be used as index in this method
Now what i need, is a way to implement my priority in this random algorithm. I dont want the ones with higher value to appear 90% of the time, but just more often. Well just like a vocabulary trainer. If someone could give me a hint to what i need to look into, i would be glad. Of course code examples would also be appreciated.
thanks in advance