1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
|
//******************************************************************************
//
// File: RandomSample.java
// Package: edu.rit.util
// Unit: Class edu.rit.util.RandomSample
//
// This Java source file is copyright (C) 2010 by Alan Kaminsky. All rights
// reserved. For further information, contact the author, Alan Kaminsky, at
// ark@cs.rit.edu.
//
// This Java source file is part of the Parallel Java Library ("PJ"). PJ is free
// software; you can redistribute it and/or modify it under the terms of the GNU
// General Public License as published by the Free Software Foundation; either
// version 3 of the License, or (at your option) any later version.
//
// PJ is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
// A PARTICULAR PURPOSE. See the GNU General Public License for more details.
//
// Linking this library statically or dynamically with other modules is making a
// combined work based on this library. Thus, the terms and conditions of the
// GNU General Public License cover the whole combination.
//
// As a special exception, the copyright holders of this library give you
// permission to link this library with independent modules to produce an
// executable, regardless of the license terms of these independent modules, and
// to copy and distribute the resulting executable under terms of your choice,
// provided that you also meet, for each linked independent module, the terms
// and conditions of the license of that module. An independent module is a
// module which is not derived from or based on this library. If you modify this
// library, you may extend this exception to your version of the library, but
// you are not obligated to do so. If you do not wish to do so, delete this
// exception statement from your version.
//
// A copy of the GNU General Public License is provided in the file gpl.txt. You
// may also obtain a copy of the GNU General Public License on the World Wide
// Web at http://www.gnu.org/licenses/gpl.html.
//
//******************************************************************************
package edu.rit.util;
import java.util.Iterator;
import java.util.NoSuchElementException;
/**
* Class RandomSample provides objects that generate random samples from
* discrete sets.
*
* @author Alan Kaminsky
* @version 15-Feb-2010
*/
public class RandomSample
{
// Prevent construction.
private RandomSample()
{
}
// Exported operations.
/**
* Create an iterator that generates a random sample of <TT>int</TT>s
* without replacement. The set to be sampled consists of the integers from
* 0 through <I>N</I>−1 inclusive. The sample consists of <I>n</I>
* items. Each item in the set is equally likely to occur in the sample. The
* iterator returns the items in the sample in ascending order. The iterator
* uses the given <TT>prng</TT> to sample items at random. For each item
* returned, the iterator consumes one random number from the <TT>prng</TT>.
* <P>
* As a special case, if <I>n</I> ≥ <I>N</I>, then the iterator returns
* all items in the set in ascending order, and the iterator does not use
* the <TT>prng</TT>.
* <P>
* The iterator uses the algorithm in A. Bissell, Ordered random selection
* without replacement, <I>Applied Statistics,</I> 35(1):73-75, 1986.
*
* @param prng Pseudorandom number generator.
* @param n Number of items in the sample.
* @param N Number of items in the set.
*
* @return Iterator over the sample.
*
* @exception IllegalArgumentException
* (unchecked exception) Thrown if <I>n</I> < 0 or <I>N</I> < 0.
*/
public static Iterator<Integer> withoutReplacement
(final Random prng,
final int n,
final int N)
{
if (n < 0)
{
throw new IllegalArgumentException
("RandomSample.withoutReplacement(): n < 0 illegal");
}
else if (N < 0)
{
throw new IllegalArgumentException
("RandomSample.withoutReplacement(): N < 0 illegal");
}
else if (n < N)
{
return new Iterator<Integer>()
{
private int i = 0;
private int M = N;
private int r = N - n;
public boolean hasNext()
{
return i < n;
}
public Integer next()
{
if (i >= n) throw new NoSuchElementException();
++ i;
double x = prng.nextDouble();
double p = 1.0;
for (;;)
{
p = p*r/M;
if (p <= x)
{
int result = N - M;
-- M;
return result;
}
else
{
-- M;
-- r;
}
}
}
public void remove()
{
throw new UnsupportedOperationException();
}
};
}
else
{
return new Iterator<Integer>()
{
private int i = 0;
public boolean hasNext()
{
return i < N;
}
public Integer next()
{
if (i >= N) throw new NoSuchElementException();
return i ++;
}
public void remove()
{
throw new UnsupportedOperationException();
}
};
}
}
/**
* Generate a random sample of <TT>int</TT>s without replacement. The set to
* be sampled consists of the integers from 0 through <I>N</I>−1
* inclusive. The sample consists of <I>n</I> items. Each item in the set is
* equally likely to occur in the sample. The items in the sample are stored
* in ascending order in the given <TT>buf</TT> starting at index 0. The
* iterator uses the given <TT>prng</TT> to sample items at random. For each
* item sampled, the iterator consumes one random number from the
* <TT>prng</TT>.
* <P>
* As a special case, if <I>n</I> ≥ <I>N</I>, then all items in the set
* are stored in ascending order in the given <TT>buf</TT> starting at index
* 0, and the iterator does not use the <TT>prng</TT>.
* <P>
* This method uses the algorithm in A. Bissell, Ordered random selection
* without replacement, <I>Applied Statistics,</I> 35(1):73-75, 1986.
*
* @param prng Pseudorandom number generator.
* @param n Number of items in the sample.
* @param N Number of items in the set.
* @param buf Array in which to store the sampled items.
*
* @return Number of sampled items actually stored in <TT>buf</TT>.
*
* @exception IllegalArgumentException
* (unchecked exception) Thrown if <I>n</I> < 0 or <I>N</I> < 0.
* @exception NullPointerException
* (unchecked exception) Thrown if <TT>buf</TT> is null.
* @exception IndexOutOfBoundsException
* (unchecked exception) Thrown if <TT>buf.length</TT> < <TT>n</TT>.
*/
public static int withoutReplacement
(Random prng,
int n,
int N,
int[] buf)
{
if (n < 0)
{
throw new IllegalArgumentException
("RandomSample.withoutReplacement(): n < 0 illegal");
}
else if (N < 0)
{
throw new IllegalArgumentException
("RandomSample.withoutReplacement(): N < 0 illegal");
}
else if (n < N)
{
int M = N;
int r = N - n;
for (int i = 0; i < n; ++ i)
{
double x = prng.nextDouble();
double p = 1.0;
for (;;)
{
p = p*r/M;
if (p <= x)
{
buf[i] = N - M;
-- M;
break;
}
else
{
-- M;
-- r;
}
}
}
return n;
}
else
{
for (int i = 0; i < N; ++ i)
{
buf[i] = i;
}
return N;
}
}
/**
* Create an iterator that generates a random sample of <TT>long</TT>s
* without replacement. The set to be sampled consists of the integers from
* 0 through <I>N</I>−1 inclusive. The sample consists of <I>n</I>
* items. Each item in the set is equally likely to occur in the sample. The
* iterator returns the items in the sample in ascending order. The iterator
* uses the given <TT>prng</TT> to sample items at random. For each item
* returned, the iterator consumes one random number from the <TT>prng</TT>.
* <P>
* As a special case, if <I>n</I> ≥ <I>N</I>, then the iterator returns
* all items in the set in ascending order, and the iterator does not use
* the <TT>prng</TT>.
* <P>
* The iterator uses the algorithm in A. Bissell, Ordered random selection
* without replacement, <I>Applied Statistics,</I> 35(1):73-75, 1986.
*
* @param prng Pseudorandom number generator.
* @param n Number of items in the sample.
* @param N Number of items in the set.
*
* @return Iterator over the sample.
*
* @exception IllegalArgumentException
* (unchecked exception) Thrown if <I>n</I> < 0 or <I>N</I> < 0.
*/
public static Iterator<Long> withoutReplacement
(final Random prng,
final int n,
final long N)
{
if (n < 0)
{
throw new IllegalArgumentException
("RandomSample.withoutReplacement(): n < 0 illegal");
}
else if (N < 0L)
{
throw new IllegalArgumentException
("RandomSample.withoutReplacement(): N < 0 illegal");
}
else if (n < N)
{
return new Iterator<Long>()
{
private int i = 0;
private long M = N;
private long r = N - n;
public boolean hasNext()
{
return i < n;
}
public Long next()
{
if (i >= n) throw new NoSuchElementException();
++ i;
double x = prng.nextDouble();
double p = 1.0;
for (;;)
{
p = p*r/M;
if (p <= x)
{
long result = N - M;
-- M;
return result;
}
else
{
-- M;
-- r;
}
}
}
public void remove()
{
throw new UnsupportedOperationException();
}
};
}
else
{
return new Iterator<Long>()
{
private long i = 0L;
public boolean hasNext()
{
return i < N;
}
public Long next()
{
if (i >= N) throw new NoSuchElementException();
return i ++;
}
public void remove()
{
throw new UnsupportedOperationException();
}
};
}
}
/**
* Generate a random sample of <TT>long</TT>s without replacement. The set
* to be sampled consists of the integers from 0 through <I>N</I>−1
* inclusive. The sample consists of <I>n</I> items. Each item in the set is
* equally likely to occur in the sample. The items in the sample are stored
* in ascending order in the given <TT>buf</TT> starting at index 0. The
* iterator uses the given <TT>prng</TT> to sample items at random. For each
* item sampled, the iterator consumes one random number from the
* <TT>prng</TT>.
* <P>
* As a special case, if <I>n</I> ≥ <I>N</I>, then all items in the set
* are stored in ascending order in the given <TT>buf</TT> starting at index
* 0, and the iterator does not use the <TT>prng</TT>.
* <P>
* This method uses the algorithm in A. Bissell, Ordered random selection
* without replacement, <I>Applied Statistics,</I> 35(1):73-75, 1986.
*
* @param prng Pseudorandom number generator.
* @param n Number of items in the sample.
* @param N Number of items in the set.
* @param buf Array in which to store the sampled items.
*
* @return Number of sampled items actually stored in <TT>buf</TT>.
*
* @exception IllegalArgumentException
* (unchecked exception) Thrown if <I>n</I> < 0 or <I>N</I> < 0.
* @exception NullPointerException
* (unchecked exception) Thrown if <TT>buf</TT> is null.
* @exception IndexOutOfBoundsException
* (unchecked exception) Thrown if <TT>buf.length</TT> < <TT>n</TT>.
*/
public static int withoutReplacement
(Random prng,
int n,
long N,
long[] buf)
{
if (n < 0)
{
throw new IllegalArgumentException
("RandomSample.withoutReplacement(): n < 0 illegal");
}
else if (N < 0)
{
throw new IllegalArgumentException
("RandomSample.withoutReplacement(): N < 0 illegal");
}
else if (n < N)
{
long M = N;
long r = N - n;
for (int i = 0; i < n; ++ i)
{
double x = prng.nextDouble();
double p = 1.0;
for (;;)
{
p = p*r/M;
if (p <= x)
{
buf[i] = N - M;
-- M;
break;
}
else
{
-- M;
-- r;
}
}
}
return n;
}
else
{
for (int i = 0; i < N; ++ i)
{
buf[i] = i;
}
return (int) N;
}
}
// Unit test main program.
// /**
// * Unit test main program.
// */
// public static void main
// (String[] args)
// {
// if (args.length != 3)
// {
// System.err.println ("Usage: java edu.rit.util.RandomSample <n> <N> <seed>");
// System.exit (1);
// }
// int n = Integer.parseInt (args[0]);
// int N = Integer.parseInt (args[1]);
// long seed = Long.parseLong (args[2]);
// Random prng = Random.getInstance (seed);
// Iterator<Integer> iter = withoutReplacement (prng, n, N);
// while (iter.hasNext()) System.out.printf (" %d", iter.next());
// System.out.println();
// }
}
|