如何使用numpy ndarray有效地存储邻接列表?

时间:2018-11-01 07:09:12

标签: python list adjacency-list numpy-ndarray

我尝试创建列表的ndarray,但没有用。

adjacency_list = np.ndarray(10, dtype = list)

每当我尝试附加一些内容,例如:adjacency_list.item(2).append(3)时,都会收到错误消息:AttributeError: 'NoneType' object has no attribute 'append'。我究竟做错了什么?有没有更好/更有效的方法来存储邻接列表?

0 个答案:

没有答案