25
votes
Using Stack as Queue
Careful! If you use an answer (like the one by Brian Bondy currently voted up) where you move items back from the second stack to the first, the solution does not have amortized constant time, and …
1
vote
best way to pick a random subset from a collection?
If you're trying to select k distinct elements from a list of n, the methods you gave above will be O(n) or O(kn), because removing an element from a Vector will cause an arraycopy to shift all the …
2
votes
Why does Java’s hashCode() in String use 31 as a multiplier?
I'm not sure, but I would guess they tested some sample of prime numbers and found that 31 gave the best distribution over some sample of possible Strings.
…
4
votes
How to test a hash function?
You have to test your hash function using data drawn from the same (or similar) distribution that you expect it to work on. When looking at hash functions on 64-bit longs, the default Java hash fu …
1
vote
Turn while loop into math equation?
I think you want something like this:
c = ((int) a + b / 2 * sign(a)) / b
That should match your loops except for certain cases where b is odd because the range fr …
