Tagged Questions
56
votes
12answers
36k views
c# random string generator
I've developed a random string generator but it's not behaving quite as I'm hoping. My goal is to be able to run this twice and generate two distinct four character random strings. However, it just ...
47
votes
5answers
12k views
Random number generator not working the way I had planned (C#)
This is a very strange problem.
Here is my code:
//Function to get random number
public static int RandomNumber(int min, int max)
{
Random random = new Random();
return ...
30
votes
12answers
28k views
Select a random N elements from List<T> in C#
I need a quick algorithm to select a random 5 elements from a generic list. For example, I'd like to get a random 5 elements from a List.
23
votes
14answers
16k views
Best way to randomize a string array in C#
What is the best way to randomize an array of strings in C#? My array contains about 500 strings and I'd like to create a new Array with the same strings but in a random order.
22
votes
9answers
17k views
Most efficient way to randomly “sort” (Shuffle) a list of integers in C#
I need to randomly 'sort' a list of integers (0-1999) in the most efficient way possible. Any ideas?
Currently, I am doing something like this:
bool[] bIndexSet = new bool[iItemCount];
for (int ...
21
votes
4answers
9k views
Random date in C#
I'm looking for some succinct C# 3 code to generate a random date between Jan 1 1995 and the current date.
I'm thinking some solution that utilizes Enumerable.Range somehow may make this more ...
20
votes
8answers
7k views
Generate random values in C#
How can I generate random Int64 and UInt64 values using the Random class in C#?
20
votes
6answers
5k views
Random weighted choice
Consider the class below that represents a Broker:
public class Broker
{
public string Name = string.Empty;
public int Weight = 0;
public Broker(string n, int w)
{
this.Name ...
18
votes
6answers
504 views
How can I generate N random values that sum to predetermined value?
I need your help with a little problem. I have four labels and I want to display on them random value between 0 to 100, and the sum of them must be 100.
This is my code :
private void ...
18
votes
6answers
9k views
How do you generate a random number in C#?
I would like to generate a random floating point number between 2 values. What is the best way to do this in C#?
17
votes
6answers
8k views
Generating a Random Decimal in C#
How can I get a random System.Decimal? System.Random doesn't support it directly.
16
votes
7answers
3k views
Generating Random Passwords
When a user on our site looses his password and heads off to the Lost Password page we need to give him a new temporary password. I don't really mind how random this is, or if it matches all the ...
15
votes
19answers
3k views
smart way to generate unique random number
i want to generate a sequence of unique random numbers in the range of 00000001 to 99999999.
So the first one might be 00001010, the second 40002928 etc.
The easy way is to generate a random number ...
14
votes
3answers
6k views
Pros and cons of RNGCryptoServiceProvider
What are the pros and cons of using System.Security.Cryptography.RNGCryptoServiceProvider vs System.Random are. I know that RNGCryptoServiceProvider is 'more random', i.e. less predictable for ...
14
votes
8answers
5k views
Generate distinctly different RGB colors in graphs
When generating graphs and showing different sets of data it usually a good idea to difference the sets by color. So one line is red and the next is green and so on. The problem is then that when the ...
13
votes
3answers
5k views
Best way to generate a random float in C#
What is the best way to generate a random float in C#?
Update: I want random floating point numbers from float.Minvalue to float.Maxvalue. I am using these numbers in unit testing of some ...
13
votes
12answers
2k views
Why does it appear that my random number generator isn't random in C#?
I'm working in Microsoft Visual C# 2008 Express.
I found this snippet of code:
public static int RandomNumber(int min, int max)
{
Random random = new Random();
return ...
13
votes
6answers
4k views
Random Gaussian Variables
does someone of you know if there is a class in the standard library of .net, that gives me the functionality to create random variables that follow a gaussian distribution?
Greets
Sebastian
12
votes
16answers
3k views
Generate a series of random numbers that add up to N in c#
How do I generate 30 random numbers between 1-9, that all add up to 200 (or some arbitrary N), in C#?
I'm trying to generate a string of digits that can add together to be N.
11
votes
10answers
378 views
Performance issue with generation of random unique numbers
I have a situation where by I need to create tens of thousands of unique numbers. However these numbers must be 9 digits and cannot contain any 0's. My current approach is to generate 9 digits (1-9) ...
11
votes
10answers
1k views
selection based on percentage weighting
I have a set of values, and an associated percentage for each:
a: 70% chance
b: 20% chance
c: 10% chance
I want to select a value (a, b, c) based on the percentage chance given.
how do I approach ...
10
votes
4answers
263 views
What does Random(int seed) guarantee?
I'm working on a project, that relies assigning users random (nothing fancy, just uniformly) subsets of a larger set. Each user has a unique identifier from a set isomorphic to integers. There are two ...
10
votes
8answers
1k views
How can I generate pseudo-random “readable” strings in Java?
Generating a truly random string of a given length is a fairly straightforward (and already-well-covered) task.
However; I'd like to generate a "pseudo" random string with the additional constraint ...
10
votes
5answers
5k views
Random Number Between 2 Double Numbers
It is possible to generate a random number between 2 doubles?
Example:
public double GetRandomeNumber(double minimum, double maximum)
{
return Random.NextDouble(minimum, maximum)
}
Then I ...
9
votes
11answers
4k views
Why use the C# class System.Random at all instead of System.Security.Cryptography.RandomNumberGenerator?
Why would anybody use the "standard" random number generator from System.Random at all instead of always using the cryptographically secure random number generator from ...
9
votes
6answers
2k views
How to generate “random” but also “unique” numbers?
How are random numbers generated.? How do languages such as java etc generate random numbers, especially how it is done for GUIDs.? i found that algorithms like Pseudorandomnumber generator uses ...
8
votes
6answers
3k views
C# Normal Random Number
I would like to create a function that accepts Double mean, Double deviation and returns a random number with a normal distribution.
Example: if I pass in 5.00 as the mean and 2.00 as the ...
7
votes
3answers
149 views
Delegate stack efficiency
Suppose I have written such a class (number of functions doesn't really matter, but in real, there will be somewhere about 3 or 4).
private class ReallyWeird
{
int y;
...
7
votes
2answers
280 views
Fastest way to fill a matrix with Random bytes
I want to fill an array with random values. The code I wrote is this one:
public class PersonalityMap
{
const int size = 16;
byte[,] fullMap = new byte[size, size];
/// <summary>
...
7
votes
8answers
1k views
How do I create a random image name in C#?
When I add a picture I want it to create a new random file name because if you add a picture with the same name it will just overwrite.
7
votes
4answers
529 views
Random encounter not so random
Hello i am having some problems generating random numbers with C#
Now i have this function.
public Color getRandomColor()
{
Color1 = new Random().Next(new Random().Next(0, 100), new ...
7
votes
1answer
677 views
How long does the stream of Random().Next() take until it repeats?
Consider the .NET Random stream:
var r = new Random();
while (true)
{
r.Next();
}
How long does it take to repeat?
7
votes
6answers
727 views
special random number
I'd like to have a random number like this:(in C#)
Random r = new Random();
r.next (0,10)
BUT it's important to the random number be more near 8,(or it be usually big),
I mean if we use a for:
...
7
votes
4answers
1k views
Is the Random Generator from Delphi the same calculation as C# if fed the same seed?
I'm translating some Delphi code into c# code when I ran into this. I don't have an environment setup for Delphi so I can't test it myself.
Delphi:
RandSeed := var1;
Result := Random($FF);
c#:
...
6
votes
2answers
163 views
Constrained weighted choice
I have a weighted choice algorithm that works, but I'd like to improve it in two aspects (in order of importance):
Guarantee that a minimum number from each possible choice is chosen.
Reduce ...
6
votes
13answers
1k views
Generate Random Unique Code
I need to generate a nine digit numeric code (random preferably) which is unique for a given day (same number cannot be generated again on the same day). I was thinking of using HHMMSSmmm (hours, ...
6
votes
9answers
2k views
How to generate random color names in C#
I need to generate random color names e.g. "Red", "White" etc. How can I do it? I am able to generate random color like this:
Random randonGen = new Random();
Color randomColor = ...
6
votes
6answers
902 views
Generate Random Weighted value
Edit: I've rewritten the question in hopes that the goal is a little clearer.
This is an extended question to this question here, and I really like the function provided in this answer.
In the ...
6
votes
6answers
258 views
How can I get true randomness in this class without Thread.Sleep(300)?
I've made a class (code below) that handles the creation of a "matching" quiz item on a test, this is the output:
It works fine.
However, in order to get it completely random, I have to put the ...
6
votes
7answers
1k views
Is C# Random Number Generator thread safe?
can anyone tell me if the C# Random.Next() method is thread safe?
6
votes
5answers
236 views
Can't make an array in C#
I'm trying to make a dynamic array in C# but I get an annoying error message. Here's my code:
private void Form1_Load(object sender, EventArgs e)
{
int[] dataArray;
Random ...
6
votes
4answers
219 views
Compare 7 words to eachother to see if 5 of them are equal. How?
I have seven words in the array:
string[7] = {x,x,x,x,x,x,x};
the x is generated from another array:
string[4]={a,b,c,d};
that means each x can be either a or b or c or d. It is randomly ...
6
votes
6answers
2k views
How to generate unique order number?
I'm looking for a good way to generate a unique order ID. Can you see any problems with the code below?
int customerId = 10000000;
long ticks = DateTime.UtcNow.Ticks;
long orderId = customerId + ...
6
votes
6answers
340 views
C#/Java Number Randomization
Is it possible, from .NET, to mimic the exact randomization that Java uses? I have a seed, and I would like to be able to recieve the same results in both C# and Java when creating a random number.
6
votes
8answers
2k views
Weighted Random Number Generation in C#
Question
How can I randomly generate one of two states, with the probability of 'red' being generated 10% of the time, and 'green' being generated 90% of the time?
Background
Every 2 second either ...
6
votes
11answers
2k views
How can I create an unique random sequence of characters in C#?
I'm implementing a URL shortening feature in my application in order to provide my users shorter alternative URLs that can be used in Twitter. The point is to be independent from the shortening ...
6
votes
7answers
281 views
What is the best way of randomly re-arranging a list of items in c#?
I have a list of objects and I want to reorder them randomly on each request. What is the best way of doing this?
6
votes
4answers
242 views
Robust Random Number Generation in C++/C#
I'm looking for a performant, reasonably robust RNG using no special hardware. It can use mathematical methods (Mersenne Twister, etc), it can "collect entropy" from the machine, whatever. On ...
5
votes
3answers
333 views
C#/XNA pseudo-Random number creation
The c#/XNA process for creating random numbers is pretty quick and easy, however, it is quite possibly the worst distributing random number generator I have ever seen. Is there a better method that is ...
5
votes
5answers
231 views
Why does an instance of Random in a serialized class repeatedly produce the same set of numbers?
So I'm a c# noob. I have a quick question that I can't find an answer to anywhere else.
[Serializable()]
public class Dictionary
{
private Random m_RandomGenerator = new Random();
public ...