gpt4 book ai didi

Python:水平切片矩阵

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

让我们考虑这两个变量:

matrix = [[1, 2, 3, 4],
[5, 6, 7, 8],
[9, 10, 11, 12]]

list_of_lengths = [2, 1, 1]

我正在寻找一种方法来获得这个结果:

result = [[[1, 2],
[5, 6],
[9, 10]], [[3],
[7],
[11]], [[4],
[8],
[12]]]

确实,我想要三个矩阵作为结果。每个的 j 长度由变量 list_of_lentghts 确定。

我已经编写了一个可行的解决方案,但我想知道是否有更简单的解决方案。这是我的解决方案:

def cut_matrix(matrix, list_of_lengths):
result = []
for a_len in list_of_lengths:
current_sub_matrix = []
for a_line in matrix:
current_new_line = []
for i in range(0, a_len):
current_new_line.append(a_line.pop(0))
current_sub_matrix.append(current_new_line)
result.append(current_sub_matrix)
return result

最佳答案

如果知道列偏移i和列数n,就可以使用切片获取列:

[row<b>[i:i+n]</b> for row in matrix]

获取切片。所以你可以简单地使用:

def cut_matrix(matrix, list_of_lengths):
result = []
<b>col = 0</b>
for a_len in list_of_lengths:
result.append(<b>[row[col:col+a_len] for row in matrix]</b>)
<b>col += a_len</b>
return result

它产生:

>>> cut_matrix(matrix,list_of_lengths)
[[[1, 2], [5, 6], [9, 10]], [[3], [7], [11]], [[4], [8], [12]]]

这也比使用 .pop(0) 更快,因为从前面弹出是在 O(n) 中完成的(所以弹出所有元素需要 O(n2) 而切片所有元素在 O(n) 中完成。最后,它保留了原始的矩阵,因此更具声明性

关于Python:水平切片矩阵,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42622764/

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