You don't need to make a set of all the points - just of the Y values for each X, because they're sorted on X. Using a HashSet requires autoboxing every value - in efficiency matters, use TDoubleHashSet instead. This is probably somewhere near optimal - depending in part on frequency of duplicates.
This is as ordered as the input, but when there are multiple Y values for a given X value, they may be output in a different order than the input.
double prevPoint[];
// If efficiency matters, use Trove TDoubleHashSet instead.
HashSet<Double> set;
ArrayList<double[]> buffer;
double[][] filter(double[][] points)
{
prevPoint = new double[]{Double.NaN, Double.NaN};
set = new HashSet<Double>();
// Allocate space as if there were no duplicates.
// Tweak if expecting lots of dupes.
buffer = new ArrayList<double[]>(points.length);
for ( double[] point : points )
{
if ( prevPoint[0] != point[0] )
{
emitSet();
set.clear();
}
set.add(point[1]);
prevPoint = point;
}
// output hashset
emitSet();
return buffer.toArray(new double[buffer.size()][2]);
}
private void emitSet()
{
for ( double y : set )
{
// optimize out array create for common case of only 1 y with the same x.
// get rid of this complexity if efficiency not needed.
if ( y == prevPoint[1] )
{
buffer.add(prevPoint);
}
else
{
buffer.add(new double[] {prevPoint[0], y});
}
}
}
double[][] points2 = {{0.0, 0.0}, {1.0, 1.0}, {2.0, 2.0}};I'm sure that's not what you want! Do you want to filter all duplicates? If so, are you guaranteed that the array is sorted? ... Please clarify. – Ed Staub Jul 6 '11 at 19:01a b b ca b c. – htorque Jul 6 '11 at 19:10