Well, you never defined "i", but if your array is sorted, this will work for any totally ordered type- one where there is only one correct sort order for a collection- and float is such a type.
Floats are rarely exactly equal to each other, especially if they went through any actual steps of calculation beforehand. It is usually better to do a check for if floating point numbers are within a small range of each other, to handle some of the inevitable error in the calculations due to rounding. If you aren't doing computing steps ahead of time and are just taking input, this should work.
Are you familiar with hash tables? This problem can be solved in O(n) time. You don't need the array to be sorted, so you don't spend O(n lg n) time sorting it. For each element, check if it is already in the hash table; return it if it is, and insert it into the hash table if it isn't. Insert and read operations are O(1) (amortized, and assuming a good hash function) on a hash table, so that should meet your needs. A hash table cannot do the approximate-equality match, though- hash tables are only useful for exact value lookups, because they don't keep data in a sorted order.
A fully generic Java implementation that should work for any type that defines a meaningful hash function and a meaningful equals (assuming Object's default reference behavior is wrong):
import java.util.HashSet;
class DuplicateValue{
public static <T> duplicateValue(T[] values){
HashSet<T> store = new HashSet<T>();
for(T item : values){
if(store.contains(item)){
return item;
}
store.add(item);
}
return null; //no duplicate found
}
}
This works for literally any data type, since Java provides built-in HashCode and Equals functions. That said, if you're using a custom data type, be sure to override .hashCode and .equals so this provides meaningful results. float isn't an object, but it can be autoboxed into Float, which is.
if (temp<>a[i]) ... else return ...because the algorithm will return value after 3n/4 iteration (may be nothing) so in most case is better to avoidelsejump, you decrease one jump and it's speed will be better a little. – Saeed Amiri Nov 19 '10 at 18:38