菜鸟一只,想在 ruby 中做凸包问题,怎么定义点的坐标和点的集合啊? 一只找不到相关问题(估计太初级了),只有来这里发帖问了
没看明白,File.read ?
File.read
#1 楼 @luikore 感谢你的回复。http://branch14.org/snippets/convex_hull_in_ruby.html 这个凸包算法里 points 的表示啊
这里 points 是个数组 point 有 x 和 y 方法,所以定义个类带这两个属性就可以了。例如
Point = Struct.new :x, :y points = [Point.new(1, 2), Point.new(3, 4), Point.new(4, 5)]
#3 楼 @luikore 3Q