3
votes
4answers
90 views
Algorithm to generate random order of elements
How to randomize order of approximately 20 elements with lowest complexity? (generating random permutations)
2
votes
3answers
51 views
Replacing sequence with random number
I would like to replace some of the sequences I use for id's in my postgresql db with my own custom made id generator. The generator would produce a random number with a checkdigit …
0
votes
1answer
35 views
iPhone SDK: Two animation sequences playing at random *help*
I have two animation sequences, and I want one of them to play randomly when a button is pressed. Here is the code:
{
color.animationImages = [NSArray arrayWithObjects:
…
7
votes
4answers
149 views
Random people’s name
I need to generate a list of people's name randomly.
Where can I find lists of names? I need a list of first names, a list of middle names and a list of surnames.
--EDIT--
Just w …
0
votes
2answers
48 views
Libraries or tools for generating random but realistic text
I'm looking for tools for generating random but realistic text. I've implemented a Markov Chain text generator myself and while the results were promising, my attempts at improvin …
0
votes
3answers
50 views
algorithm to add randomly-generated NSStrings to NSMutableArray
The goal is to generate an NSString chars in length and assign each string to an array. I'm getting stuck on what I need to do with my algorithm to get the correct result. Here's …
1
vote
1answer
24 views
Randomize external RSS feed order in PHP
I'm using a third-party AJAX slideshow for a website that takes an RSS feed as its picture source. I would like to randomize the order of the pictures, but that's not a feature of …
1
vote
2answers
33 views
Select Random Datas From File
Hello,
I'm learning C# and now I need to build a home project(just to learn how to use file I/O and random). I have a file(names.txt) like this:
Nathan
John
Max
Someone
But how …
1
vote
3answers
75 views
Random int64 and float64 numbers
I'm trying to generate random 64-bit integer values for integers and floats using Numpy, within the entire range of valid values for that type. To generate random 32-bit floats, I …
2
votes
3answers
106 views
C# Random Code Field Generator for Object
I have an object with the following properties
GID
ID
Code
Name
Some of the clients dont want to enter the Code so the intial plan was to put the ID in the code but the baseobjec …
0
votes
3answers
57 views
iPhone: choose random value
hi all,
i am new to iPhone Programing
i have 10 number say (1,2,3,4,5,6,7,8,9,10)
i want to choose randomly 1 number from above 10 number.so how can i choose random number from a s …
1
vote
7answers
140 views
Need a fast random generator for c++
Hi guys.
I'm trying to do some opt-3 swapping on my TSP generator for euclidian distances, and since I in many cases have more than ~500 nodes, I need to randomly select at least …
1
vote
6answers
78 views
How to get random value out of an array
I have a an array called $ran = array(1,2,3,4);
I need to get a random value out of this array and store it in a variable, how can I do this?
16
votes
9answers
468 views
How to generate random ‘greenish’ colors
Anyone have any suggestions on how to make randomized colors that are all greenish? Right now I'm generating the colors by this:
color = (randint(100, 200), randint(120, 255), ran …
6
votes
9answers
425 views
Unique random numbers in an integer array in the C programming language.
How do I fill an integer array with unique values (no duplicates) in C?
int vektor[10];
for (i = 0; i < 10; i++) {
vektor[i] = rand() % 100 + 1;
}
//No uniqueness here …
