- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
public static void main(String args[])
{
// Build a queue containing the Integers 1,2,...,6:
RandomizedQueue<Integer> Q= new RandomizedQueue<Integer>();
for (int i = 1; i < 7; ++i) Q.enqueue(i); // autoboxing! cool!
// Print 30 die rolls to standard output
StdOut.print("Some die rolls: ");
for (int i = 1; i < 30; ++i) StdOut.print(Q.sample() +" ");
StdOut.println();
// Let's be more serious: do they really behave like die rolls?
int[] rolls= new int [10000];
for (int i = 0; i < 10000; ++i)
rolls[i] = Q.sample(); // autounboxing! Also cool!
StdOut.printf("Mean (should be around 3.5): %5.4f\n", StdStats.mean(rolls));
StdOut.printf("Standard deviation (should be around 1.7): %5.4f\n",
StdStats.stddev(rolls));
// Let's look at the iterator. First, we make a queue of colours:
RandomizedQueue<String> C= new RandomizedQueue<String>();
C.enqueue("red"); C.enqueue("blue"); C.enqueue("green"); C.enqueue("yellow");
Iterator I= C.iterator();
Iterator J= C.iterator();
Iterator K= C.iterator();
Iterator L= C.iterator();
Iterator M= C.iterator();
Iterator N= C.iterator();
StdOut.print("Two colours from first shuffle: ");
StdOut.print(I.next()+" ");
StdOut.print(I.next()+" ");
StdOut.print("\nEntire second shuffle: ");
while (J.hasNext()) StdOut.print(J.next()+" ");
StdOut.print("\nEntire third shuffle: ");
while (K.hasNext()) StdOut.print(K.next()+" ");
StdOut.print("\nEntire fourth shuffle: ");
while (L.hasNext()) StdOut.print(L.next()+" ");
StdOut.print("\nEntire fifth shuffle: ");
while (M.hasNext()) StdOut.print(M.next()+" ");
StdOut.print("\nEntire sixth shuffle: ");
while (N.hasNext()) StdOut.print(N.next()+" ");
StdOut.print("\nRemaining two colours from first shuffle: ");
StdOut.print(I.next()+" ");
StdOut.println(I.next());
}
我从某处借用了这个客户端来检查我的 RandomizedQueue 实现。其他一切都有效,但它的迭代器部分不起作用。我的意思是一次运行的示例输出是:
Some die rolls: 1 1 5 6 3 6 6 1 2 4 6 2 4 5 6 4 4 2 2 5 6 6 2 6 4 5 3 3 2
Mean (should be around 3.5): 3.4882
Standard deviation (should be around 1.7): 1.7069
Two colours from first shuffle: yellow green
Entire second shuffle: yellow green blue red
Entire third shuffle: yellow green blue red
Entire fourth shuffle: yellow green blue red
Entire fifth shuffle: yellow green blue red
Entire sixth shuffle: yellow green blue red
Remaining two colours from first shuffle: blue red
特定迭代器的迭代应该在 RandomizedQueue 中的对象上随机进行,并且每个迭代器应该记住它自己的特定顺序(一旦声明)。这是我的 Iterable 和 Iterator 代码:
import java.util.Iterator;
import java.util.NoSuchElementException;
public class RandomizedQueue<Item> implements Iterable<Item> {
private Item[] a;
private int N;
public RandomizedQueue() {
a = (Item[]) new Object[2];
} // construct an empty randomized queue
public boolean isEmpty() {
return N == 0;
} // is the queue empty?
public int size() {
return N;
} // return the number of items on the queue
public void enqueue(Item item) {
if (item == null) throw new NullPointerException();
if (N == a.length) resize(2*a.length); // double size of array if necessary
a[N++] = item;
} // add the item
private void resize(int capacity) {
assert capacity >= N;
Item[] temp = (Item[]) new Object[capacity];
for(int i = 0; i < N; i++) {
temp[i] = a[i];
}
a = temp;
}
public Item dequeue() {
if(isEmpty()) throw new java.util.NoSuchElementException();
int random = StdRandom.uniform(N); // generating a number b/w 0 and N-1
// swap with the final element
Item temp = a[random];
a[random] = a[N-1];
a[N-1] = temp;
Item item = a[N-1];
a[N-1] = null;
N--;
if (N > 0 && N == a.length/4) resize(a.length/2);
return item;
} // delete and return a random item
public Item sample() {
if(isEmpty()) throw new java.util.NoSuchElementException();
int random = StdRandom.uniform(N); // generating a number b/w 0 and N-1
Item item = a[random];
return item;
} // return (but do not delete) a random item
public Iterator<Item> iterator() {
return new RandomIterator();
} // return an independent iterator over items in random order
private class RandomIterator implements Iterator<Item> {
private int i = N;
private Item[] itemcopy = (Item[]) new Object[N];
public RandomIterator() {
System.arraycopy(a, 0, itemcopy, 0, N);
StdRandom.shuffle(itemcopy, 0, N-1);
}
public boolean hasNext() { return i > 0 ;}
public void remove() { throw new UnsupportedOperationException(); }
public Item next()
{
if(!hasNext()) throw new NoSuchElementException();
return a[--i];
}
}
}
StdIn、StdOut 和 StdRandom 是为赋值提供的类,其功能已在程序中使用,并且它们的工作方式如其名称所暗示的那样。那么为什么不同的迭代器不产生随机输出呢? shuffle
产生对象的随机排列。 arraycopy 将一个数组复制到另一个数组。 StdOut.print
的行为与 System.out.print
最佳答案
我认为它是正确的,让我们检查一下准确性
Some die rolls: 1 1 5 6 3 6 6 1 2 4 6 2 4 5 6 4 4 2 2 5 6 6 2 6 4 5 3 3 2
Mean (should be around 3.5): 3.4882
Standard deviation (should be around 1.7): 1.7069
3.5 - 3.4882
= 0.0118
和
1.7 - 1.7069
= -0.069
两者都“接近”其预期值。
编辑
另外,
StdRandom.shuffle(itemcopy, 0, N-1);
应该是
StdRandom.shuffle(itemcopy, 0, N);
此外,您共享相同的 iterator()
方式
RandomizedQueue<String> C= new RandomizedQueue<String>();
C.enqueue("red"); C.enqueue("blue"); C.enqueue("green"); C.enqueue("yellow");
Iterator I= new RandomizedQueue<String>(C).iterator();
Iterator J= new RandomizedQueue<String>(C).iterator();
Iterator K= new RandomizedQueue<String>(C).iterator();
Iterator L= new RandomizedQueue<String>(C).iterator();
Iterator M= new RandomizedQueue<String>(C).iterator();
Iterator N= new RandomizedQueue<String>(C).iterator();
关于java - RandomIterator 不产生随机输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24445963/
我让随机数低于之前的随机数。 if Airplane==1: while icounter0: print "You have enoph fuel to get to New
是否可以生成 BigFloat 的随机数?类型均匀分布在区间 [0,1)? 我的意思是,因为 rand(BigFloat)不可用,看来我们必须使用 BigFloat(rand())为了那个结局。然而,
我正在尝试学习 Kotlin,所以我正在学习互联网上的教程,其中讲师编写了一个与他们配合良好的代码,但它给我带来了错误。 这是错误 Error:(26, 17) Kotlin: Cannot crea
是否有任何方法可以模拟 Collections.shuffle 的行为,而不使比较器容易受到排序算法实现的影响,从而保证结果的安全? 我的意思是不违反类似的契约(Contract)等.. 最佳答案 在
我正在创建一个游戏,目前必须处理一些math.random问题。 我的Lua能力不是那么强,你觉得怎么样 您能制定一个使用 math.random 和给定百分比的算法吗? 我的意思是这样的函数: fu
我想以某种方式让按钮在按下按钮时随机改变位置。我有一个想法如何解决这个问题,其中一个我在下面突出显示,但我已经认为这不是我需要的。 import javafx.application.Applicat
对于我的 Java 类(class),我应该制作一个随机猜数字游戏。我一直陷入过去几天创建的循环中。程序的输出总是无限循环,我不明白为什么。非常感谢任何帮助。 /* This program wi
我已经查看了涉及该主题的一些其他问题,但我没有在任何地方看到这个特定问题。我有一个点击 Web 元素的测试。我尝试通过 ID 和 XPath 引用它,并使用 wait.until() 等待它变得可见。
我在具有自定义类的字典和列表中遇到了该异常。示例: List dsa = (List)Session["Display"]; 当我使用 Session 时,转换工作了 10-20 次..然后它开始抛
需要帮助以了解如何执行以下操作: 每隔 2 秒,这两个数字将生成包含从 1 到 3 的整数值的随机数。 按下“匹配”按钮后,如果两个数字相同,则绿色标签上的数字增加 1。 按下“匹配”按钮后,如果两个
void getS(char *fileName){ FILE *src; if((src = fopen(fileName, "r")) == NULL){ prin
如果我有 2 个具有以下字段的 MySQL 数据库... RequestDB: - Username - Category DisplayDB: - Username - Category
我有以下语句 select random() * 999 + 111 from generate_series(1,10) 结果是: 690,046183290426 983,732229881454
我有一个使用 3x4 CSS 网格构建的简单网站。但出于某种原因,当我在 chrome“检查”中检查页面时,有一个奇怪的空白 显然不在我的代码中的标签。 它会导致网站上出现额外的一行,从而导致出现
我有两个动画,一个是“过渡”,它在悬停时缩小图像,另一个是 animation2,其中图像的不透明度以周期性间隔重复变化。 我有 animation2 在图像上进行,当我将鼠标悬停在它上面时,anim
如图所示post在 C++ 中有几种生成随机 float 的方法。但是我不完全理解答案的第三个选项: float r3 = LO + static_cast (rand()) /( static_c
我正在尝试将类添加到具有相同类的三个 div,但我不希望任何被添加的类重复。 我有一个脚本可以将一个类添加到同时显示的 1、2 或 3 个 div。期望的效果是将图像显示为背景图像,并且在我的样式表中
我有一个基本上可以工作的程序,它创建由用户设置的大小的嵌套列表,并根据用户输入重复。 但是,我希望各个集合仅包含唯一值,目前这是我的输出。 > python3 testv.py Size of you
我正在尝试基于 C# 中的种子生成一个数字。唯一的问题是种子太大而不能成为 int32。有什么方法可以像种子一样使用 long 吗? 是的,种子必须很长。 最佳答案 这是我移植的 Java.Util.
我写这个函数是为了得到一个介于 0 .. 1 之间的伪随机 float : float randomFloat() { float r = (float)rand()/(float)RAN
我是一名优秀的程序员,十分优秀!