Search Results

4
votes

Should javac find methods outside of an anonymous class of the same name?

This behavior of javac conforms to the spec. See §15.12 Method Invocation Expressions in th …
1
vote

Is there a performance difference between a for loop and a for-each loop?

The only way to know for sure is to benchmark it, and even that is not as simple as it may sound. The JIT …
10
votes

How to convert UTF-8 to US-Ascii in Java

The uni2ascii program is written in C, but you could probably convert it to Java with little effort. It contains a large ta …
0
votes

Java library to do time series analysis

Weka is a well-known machine learning library in Java, but it does not support time series too well. However, some people have adde …
3
votes

O(N log N) Complexity - Similar to linear?

For even more fun in a similar vein, try plotting the time taken by n operations on the standard dis …
1
vote

Estimating a probability given other probabilities from a prior

A really simple way of doing this without any difficult math is to increase buyCount and noBuyCount artificially by adding virtual customers that either bought or didn't buy the product. You can tu …