如何使用LINQ和C#找到最接近0,0点的点

时间:2013-02-26 15:03:12

标签: c# linq point

我有一个点列表(列表)

  • 7,43
  • 7.42
  • 6,42
  • 5,42
  • 6,43
  • 5,43

我想使用linq表达式来获得最接近0,0的点。例如 - 对于这个列表,我预计值为5,42。

如何使用LINQ找到最接近0,0点的点?

4 个答案:

答案 0 :(得分:18)

下面找到最低L^2范数(两个维度中最常见的“距离”定义)的点,而不对整个列表进行昂贵的排序:

var closestToOrigin = points
    .Select(p => new { Point = p, Distance2 = p.X * p.X + p.Y * p.Y })
    .Aggregate((p1, p2) => p1.Distance2 < p2.Distance2 ? p1 : p2)
    .Point;

答案 1 :(得分:3)

试试这个:

List<Point> points = new List<Point>();
// populate list
var p = points.OrderBy(p => p.X * p.X + p.Y * p.Y).First();

或更快的解决方案:

var p = points.Aggregate(
            (minPoint, next) =>
                 (minPoint.X * minPoint.X + minPoint.Y * minPoint.Y)
                 < (next.X * next.X + next.Y * next.Y) ? minPoint : next);

答案 2 :(得分:3)

罗林的解决方案肯定更短,但这里有另一种选择

// project every element to get a map between it and the square of the distance
var map = pointsList                                            
    .Select(p => new { Point = p, Distance = p.x * p.x + p.y * p.y });

var closestPoint = map // get the list of points with the min distance
    .Where(m => m.Distance == map.Min(t => t.Distance)) 
    .First() // get the first item in that list (guaranteed to exist)
    .Point; // take the point

如果您需要找到所有0,0距离最短的元素,只需删除First并执行Select(p => p.Point)即可获得积分(与映射相反)。

答案 3 :(得分:2)

作为替代方法,您可以考虑向标准库添加IEnumerable.MinBy()和IEnumerable.MaxBy()的实现。

如果您有可用的代码,则代码变为:

var result = points.MinBy( p => p.X*p.X + p.Y*p.Y );

Jon Skeet提供了MinBy和MaxBy的良好实现。

他在这里谈到:How to use LINQ to select object with minimum or maximum property value

来自那里的链接已经过时了;最新版本在这里:

http://code.google.com/p/morelinq/source/browse/MoreLinq/MinBy.cs

http://code.google.com/p/morelinq/source/browse/MoreLinq/MaxBy.cs

这是一个完整的样本。很明显,这是一个破解坚果的大锤,但我认为这些方法足以包含在您的标准库中:

using System;
using System.Collections.Generic;
using System.Drawing;

namespace Demo
{
    public static class EnumerableExt
    {
        public static TSource MinBy<TSource, TKey>(this IEnumerable<TSource> source, Func<TSource, TKey> selector, IComparer<TKey> comparer)
        {
            using (IEnumerator<TSource> sourceIterator = source.GetEnumerator())
            {
                if (!sourceIterator.MoveNext())
                {
                    throw new InvalidOperationException("Sequence was empty");
                }

                TSource min = sourceIterator.Current;
                TKey minKey = selector(min);

                while (sourceIterator.MoveNext())
                {
                    TSource candidate = sourceIterator.Current;
                    TKey candidateProjected = selector(candidate);

                    if (comparer.Compare(candidateProjected, minKey) < 0)
                    {
                        min    = candidate;
                        minKey = candidateProjected;
                    }
                }

                return min;
            }
        }

        public static TSource MinBy<TSource, TKey>(this IEnumerable<TSource> source, Func<TSource, TKey> selector)
        {
            return source.MinBy(selector, Comparer<TKey>.Default);
        }
    }

    public static class Program
    {
        static void Main(string[] args)
        {
            List<Point> points = new List<Point>
            {
                new Point(7, 43),
                new Point(7, 42),
                new Point(6, 42),
                new Point(5, 42),
                new Point(6, 43),
                new Point(5, 43)
            };

            var result = points.MinBy( p => p.X*p.X + p.Y*p.Y );

            Console.WriteLine(result);
        }
    }
}