gpt4 book ai didi

python - 通过索引或坐标访问二维数组中的元素

转载 作者:太空宇宙 更新时间:2023-11-04 10:43:24 25 4
gpt4 key购买 nike

设置

我正在用 Python 编写一个类,用于处理二维 bool 数组。

class Grid(object):
def __init__(self, length):
self.length = length
self.grid = [[False]*length for i in range(length)]

def coordinates(self, index):
return (index // self.length, index % self.length)

在我的应用程序中,有时通过坐标访问项目是有意义的,但有时通过索引访问项目更有意义。我还经常需要一次伪造或证实一批元素。在不使类(class)变得非常复杂的情况下,我可以这样做:

g = Grid(8)

# access by coordinates
g.grid[4][3] = True

# access by index
coords = g.coordinates(55)
g[coords[0]][coords[1]] = True

# truthify a batch of coordinates
to_truthify = [(1, 3), (2, 3), (2, 7)]
for row, col in to_truthify:
g.grid[row][col] = True

# falsify a batch of indices
to_falsify = [19, 22, 60]
for i in to_falsify:
coords = g.coordinates(i)
g.grid[coords[0]][coords[1]] = False

第一步

自然地,我想向我的 Grid 对象添加一些 mutator 方法来创建它,这样我就不必直接访问对象内部并编写一堆循环:

def set_coordinate(self, row, col, value):
self.grid[row][col] = bool(value)

def set_index(self, i, value):
coords = self.coordinates(i)
self.set_coordinates(coords[0], coords[1], value)

def set_coordinates(self, coordinates, value):
for row, col in coordinates:
self.set_coordinate(row, col, value)

def set_indices(self, indices, value):
for i in indices:
self.set_index(i, value)

访问器方法也很简单。我可能还想添加一些语义上有意义的别名:

def truthify_coordinate(self, row, col):
self.set_coordinate(row, col, True)

def falsify_coordinate(self, row, col):
self.set_coordinate(row, col, False)

def truthify_coordinates(self, coordinates):
self.set_coordinates(coordinates, True)

... etc ...

想法

我想创建一个名为 set_item 的方法,其中位置可以是长度为 2 的可迭代对象,表示坐标 标量索引。

def set_item(self, location, value):
try:
location = self.coordinates(location)
except TypeError:
pass
self.set_coordinates(location[0], location[1], value)

优缺点

这样做的好处(很明显)是我不需要指定位置是一对坐标还是索引,所以当我一次设置一批位置时,它们不需要都相同时间。例如,以下内容:

indices = [3, 5, 14, 60]
coordinates = [(1, 7), (4, 5)]
g.truthify_indices(indices)
g.truthify_coordinates(coordinates)

成为

locations = [3, 5, (1, 7), 14, (4, 5), 60]
g.truthify(locations)

在我看来,它更清晰、更易于阅读和理解。

缺点之一是像 g.truthify((2, 3)) 这样的东西很难立即破译(它是设置一个坐标还是两个索引?)。可能还有更多我没有想到的。

问题

实现这个想法是 pythonic 要做的事情,还是我应该坚持明确区分索引和坐标?

最佳答案

我认为一种更 Pythonic 的写法:

g.truthify_coordinate(row, col)

是能够写:

g[row][col] = True   # or g[row, col] = True

第二个在阅读时更容易理解,这是 Python 更重要的指南之一:code is read much more often than it is written . (虽然我远不是专家,因为什么是 Pythonic。)

也就是说,您似乎正在重新开发 numpy ,并且在大多数情况下重新实现一个好的工具是错误的。可能有不使用 numpy 的原因,但应该首先探索它。此外,如果您选择不使用 numpy,它的设计将为您提供自己方法的想法。

关于python - 通过索引或坐标访问二维数组中的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19192825/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com