Intersection between sets containing different types of variables
Posted
by Gacek
on Stack Overflow
See other posts from Stack Overflow
or by Gacek
Published on 2010-04-15T16:35:27Z
Indexed on
2010/04/15
16:43 UTC
Read the original article
Hit count: 165
c#
|collections
Let's assume we have two collections:
List<double> values
List<SomePoint> points
where SomePoint
is a type containing three coordinates of the point:
SomePoint
{
double X;
double Y;
double Z;
}
Now, I would like to perform the intersection between these two collections to find out for which points in points
the z
coordinate is eqal to one of the elements of values
I created something like that:
HashSet<double> hash = new HashSet<double>(points.Select(p=>p.Z));
hash.IntersectWith(values);
var result = new List<SomePoints>();
foreach(var h in hash)
result.Add(points.Find(p => p.Z == h));
But it won't return these points for which there is the same Z
value, but different X
and Y
. Is there any better way to do it?
© Stack Overflow or respective owner