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

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

First a remark: You should use qsrand only once at the beginning of the program.

Now to your algorithm: First get the sum of all your values, let us call it sumValues, then compute your random number between 0 and sumValues-1. Go through your list and sum the values into the variable currentSum until it is greater or equal to your random number, and use the index of this entry. This will be more efficient if you sort your list by decreasing values.

link|improve this answer
Also described here: stackoverflow.com/questions/1761626/weighted-random-numbers/… – Mu Mind Jun 28 '11 at 16:57
@Mu Mind, just one of many. This question pops up periodically. – Mark Ransom Jun 28 '11 at 17:12
Thank you hmuelner and Mu Mind, it works the way i hoped it would. – jay Jun 28 '11 at 21:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.