12
votes
How would I go about implementing this algorithm?
What you're talking about is a de Bruijn sequence. If you don't care about how it works, you just want the result, …
2
votes
Java: How to remove elements from a list while iterating over/adding to it
Refactor out all the ServerObject stopping code from stopAndRemove into a private stopServer method, and then do the removal separately in stopAndRemove and closeCurrentlyOpen. Then you can use a …
0
votes
Most elegant way to clip a line?
There's no pretty way to do it with AWT. Your best bet is something like the Cohen-Sutherland algorithm. …
3
votes
Extract first N unique integers from an Array
Instead of storing the unique integers into an array, use an actual binary tree. It'll save you from shifting the array elements repeatedly.
…
1
vote
What’s a good rate limiting algorithm?
Keep the time that the last five lines were sent. Hold the queued messages until the time the fifth-most-recent message (if it exists) is a least 8 seconds in the past (with last_five as an array …
7
votes
How to calculate the odds of a collision in hash algorithms?
This is a generalization of the Birthday problem.
…
0
votes
When inserting to a BST, is the first item inserted always the root of the tree?
Yes, which is why self-balancing BSTs exist.
…
4
votes
recursion: cut array of integers in two parts of equal sum - in a single pass
Here's a way to do it that takes advantage of Ruby's ability to return multiple values. The first value is the index for the split (if it exists), the second is the sum of each half (or the sum of …
9
votes
Is it possible to calculate median of a list of numbers better than O(n log n)?
What you're talking about is a selection algorithm, where k = n/2. There is a method based on the same …
13
votes
Out of four std::vector objects select the one with the most elements
You're severely overthinking this. You've only got four vectors. You can determine the largest vector using 3 comparisons. Just do that:
std::vector<blah>& …
