public class Math
绝对值static double abs(double a)
最大值static double max(double a,double b)
最小值static double min(double a,double b)
以上三个也定义了int long float 版本
public class Arrays
数组升序排序 static void sot(int[] a)
public class StdRandom
初始化 static void initialize(long seed)
0-1之间的实数 static double random()
0 - N-1之间的整数 static int uniform(int N)
lo - hi-1之间的整数 static int uniform(int lo,inyt hi)
lo - hi之间的实数 static double uniform(double lo,double hi)
返回真的概率为p static boolean bernoulli(double p)
将数组随机排序 static void shuffle(double[] a)
public class StdStats
平均值static double mean(double[] a)
采样方差 static double var(double[] a)
采样标准差static double stddev(double[] a)
中位数static double median(double[] a)
以下为StdRandom和Std Stats的代码文档