PointCollection 中 X 和 Y 坐标的最小值 (C#)
假设我有一个点集合 (PointCollection
)。 我想要做的是找到这些点中X和Y坐标的最小值。 显然,人们可以迭代该集合并逐步检查坐标。
我想知道是否有更快、更有效的解决方案。
你有什么想法吗?
谢谢
let's assume I have got a collection of points (PointCollection
).
What I want to do is to find the minimal value of X and Y coordinates among these points.
Obviously one could iterate over the collection and check the coordinates step by step.
I wonder if there is a quicker and more efficient solution.
Do you have any ideas?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
打字速度更快?也许:
但这执行会比单个
foreach
循环慢:Quicker to type? Perhaps:
But that will execute slower than a single
foreach
loop:要分别获取最低的 x 和 y 位置,请使用
如果您想要具有最低组合 X 和 Y 位置的位置,请使用
To get the lowest x and y positions seperately, use
If you want the one with the lowest combined X and Y position, use