这是一个有趣的问题。假设我在sql db上有一个表,其中填充了x,y坐标(正象限),每个都有一个颜色值,即模式看起来像<x , y, color>
。任务是检测具有相同颜色的最大可能正方形。我一直试图解决这个问题好几个小时,似乎无法解决这个问题。
我不是在寻找解决方案,而是提示。
请注意,这一切都必须在SQL中发生,主要是使用各种连接,分组和聚合操作。一些示例代码会很好。
答案 0 :(得分:2)
假设你的问题空间很小,让我们说10x10(x在1到10之间),然后是一种天真而野蛮的方法:
Numbers
表的子集)给你所有可能方块的左下角(100分)left <= x <= right
。这会产生一个庞大的集合HAVING COUNT(DISTINCT color) = 1
。COUNT
像素=找到的数据点数答案 1 :(得分:2)
如果您只请求角落颜色相同,则可以
top left corner
join top right corner on equal x and color and greater y
join bottom left corner on equal y and color and greater x
join bottom right on equal x, y and color
order by (x1-x2)*(y1-x2) descending
limit 1
当然,限制1不会对性能产生太大影响,因为无论如何它都必须生成所有正方形。
您可以通过添加(颜色,x,y)和(颜色,y,x)索引来(大大)提高速度。 执行计划很可能最终结束:
(1) full scan for all top left corners
(2) dependent index scan for all top right corners
(3) dependent index scan for all bottom left corners
(4) dependent index scan for the bottom right corner expecting at most one match
(5) (partial) table sort of the entire set of squares (cannot use indexes)