代码搜索:Random

找到约 10,000 项符合「Random」的源代码

代码结果 10,000
www.eeworm.com/read/152646/12095239

makefile

# MAKE FILE for GSNAKE API # Change the following line to reflect where your X11-include directory X11Include = /usr/openwin/include CC = g++ -I$(X11Include) LIBSOURCE = ../lib SOURCE
www.eeworm.com/read/341217/12100267

java die.java

package com.javapatterns.multilingual.dice; import java.util.Random; import java.util.Date; public class Die { private static Die die1 = new Die(); private static Die die2 = new Die(
www.eeworm.com/read/341212/12101559

htm math.htm

testJavaScript
www.eeworm.com/read/255081/12102063

~pas main.~pas

unit main; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type Tformmain = class(TForm) Edit1: TEdit; Edit2: T
www.eeworm.com/read/255081/12102095

pas main.pas

unit main; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type Tformmain = class(TForm) Edit1: TEdit; Edit2: T
www.eeworm.com/read/341168/12104799

cs upload.aspx.cs

using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using
www.eeworm.com/read/152304/12123092

errs

cc -O -c main.c cc -O -c app.c cc -O -c generate.c cc -O -c initial.c cc -O -c memory.c cc -O -c operators.c cc -O -c random.c cc -O -c report.c cc -O -c rselect.c cc -O -c statistic.c cc -
www.eeworm.com/read/254618/12127390

txt 概率算法简介.txt

很多算法的每一个计算步骤都是固定的,而在下面我们要讨论的概率算法,允许算法在执行的过程中随机选择下一个计算步骤。许多情况下,当算法在执行过程中面临一个选择时,随机性选择常比最优选择省时。因此概率算法可在很大程度上降低算法的复杂度。 概率算法的一个基本特征是对所求解问题的同一实例用同一概率算法求解两次可能得到完全不同的效果。这两次求解问题所需的时间甚至所得到的结果可能会有相当大的差别。一般情 ...
www.eeworm.com/read/254578/12128886

java arraynew.java

import java.util.*; public class ArrayNew { static Random rand = new Random(); static int pRand(int mod) { return Math.abs(rand.nextInt()) % mod + 1; } public static void main(Stri
www.eeworm.com/read/254436/12136126

java stockexchangebase.java

/* * RECURSION PROPRIETARY-NOT TO BE DISCLOSED OUTSIDE RECURSION, INC. */ /** * Created by twheeler on Mar 8, 2007 at 4:33:08 PM */ package examples.yellowpages; import java.util.Iterat