vote up 4 vote down star
3

This is just a puzzle for your amusement; I don't really need help with it.

What are the best implementations for these methods in Java?

public int average(int[] values) {}

public long average(long[] values) {}

public long average(Iterable<Long> values) {}

Values should, of course, round down.

The critera for "best" for this puzzle (and, I think, any programming puzzle) are, in this order:

  1. Completeness
  2. Correctness
  3. Performance

If multiple solutions have both of those going for them, then vote by niftiness!

Enjoy!

flag
2  
What do you define as 'best'? There are many possible interpretations of the term. – Dav Nov 6 at 4:57
1  
I'm sorry; I'm a n00b and I don't know all the protocols yet. Criteria in the order correctness > performance > niftiness seemed obvious to me; I didn't think it needed spelling out, but I don't mind doing so. – Kevin Bourrillion Nov 6 at 5:22
2  
Actually, maybe the problem is that you're not supposed to post puzzles on SO? "not a real question" isn't the same as "question underspecified." – Kevin Bourrillion Nov 6 at 5:26
3  
I found a post that indicates most users welcome this kind of post: meta.stackoverflow.com/questions/25437/… – Kevin Bourrillion Nov 6 at 6:29
4  
Wait a minute! Something is bugging me now about my puzzles being closed for not explicitly defining "best". Any SO post could use the phrasing "what's the best way to do X"? And the ones that don't say that? Well guess what, the asker is still going to use his own totally unspecified judgment on which answer he thinks was the best. And it gets worse: VOTERS are judging "bestness" too! And no one defines "best"! Unbelievable! It's like you were worried that I had one exact specific answer in mind and only that answer would be rewarded. But I just figured voting would happen as usual. – Kevin Bourrillion Nov 7 at 18:21
show 6 more comments

closed as not a real question by Brian, Nader Shirazie, paxdiablo, Asaph, jjnguy Nov 6 at 5:13

1 Answer

vote up 0 vote down

What's interesting about the Iterable solution is that you don't know, à priori, how many items you are averaging over. Here's my solution, which is about as cheapass as one can get; I tried hard to come up with a non-BigInteger approach, but none of them were very robust. (See the revision history for previous attempts.)

public static long average(Iterable<Long> args) {
    BigInteger total = BigInteger.ZERO;
    long count = 0L;
    for (long arg : args) {
        total = total.add(BigInteger.valueOf(arg));
        ++count;
    }
    return total.divide(BigInteger.valueOf(count)).longValue();
}
link|flag
huh, that's interesting; you can answer a question even though it's closed? – Kevin Bourrillion Nov 20 at 23:41
Yes, it's one of those "open secrets" that's pretty well-known among Stack Overflow oldtimers. :-P BTW, I'm still working on a more robust solution---coming up soon! – Chris Jester-Young Nov 22 at 2:23
I created a version that used mixed fractions, which helps a little, but is still not perfect (still trips up if dealing with large numbers that are relatively prime (gcd == 1)). :-P So, I'll keep trying. :-) – Chris Jester-Young Nov 22 at 7:14
Well, I posted the ultimate in cheapass answers. But it's still technically complete and correct, even if not very performant. :-P (BTW, I voted to reopen your question when I first answered it. I hope others will do the same too.) – Chris Jester-Young Nov 27 at 0:41

Not the answer you're looking for? Browse other questions tagged or ask your own question.