请教一下各位评价一下几个杂志水平还有投稿难易程度# Biology - 生物学
b*n
1 楼
Given a set of points (x,y) on a 2D coord system, identify list of 2D coords
that are of distance less than x units long.
Eg. Let x = 1; Given (0,0), (0,1), (1, 2), (4,6); Return
1 -> (0,0), (0,1)
有没有sub O(n^2)的解法?
that are of distance less than x units long.
Eg. Let x = 1; Given (0,0), (0,1), (1, 2), (4,6); Return
1 -> (0,0), (0,1)
有没有sub O(n^2)的解法?