|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 小蜂队 于 2021-12-24 20:14 编辑
0.>>> matrix = [[1, 2, 3, 4],
... [5, 6, 7, 8],
... [9, 10, 11, 12]]
>>> Tmatrix = [[row[i] for row in matrix] for i in range(4)]
# 这个循环的实现还是挺复杂的,开始学我就琢磨了挺久的,首先 for i in range(4) 那么 i == 0,1,2,3,
#当 i == 0,row[i] 要取遍 matrix 中的元素的第一个值,row[0] == matrix[0][0],matrix[1][0],matrix[2][0]
#当 i == 1,row[i] 要取遍 matrix 中的元素的第二个值,row[1] == matrix[0][1],matrix[1][1],matrix[2][1]
#以此类推
>>> Tmatrix
[[1, 5, 9], [2, 6, 10], [3, 7, 11], [4, 8, 12]]
1.matrix = [[1, 2, 3, 4],
[5, 6, 7, 8],
[9, 10, 11, 12]]
rows = len(matrix)
cols = len(matrix[0])
#定义方向
left = 0
right = cols - 1
top = 0
bottom = rows - 1
result = []
while left <= right and top <= bottom:#初始条件
# 从左往右遍历
for col in range(left, right + 1):
result.append(matrix[top][col])
# 从上往下遍历
for row in range(top + 1, bottom + 1):
result.append(matrix[row][right])
if left < right and top < bottom:
# 从右往左遍历
for col in range(right - 1, left, -1):
result.append(matrix[bottom][col])
# 从下往上遍历
for row in range(bottom, top, -1):
result.append(matrix[row][left])
left = left + 1
right = right - 1
top = top + 1
bottom = bottom - 1
#循环完一次,对方位各进行一次清算,在进行下一次的循环,直到不满足初始条件而退出循环
print(result)
执行的结果如下:[1, 2, 3, 4, 8, 12, 11, 10, 9, 5, 6, 7]
>>>
|
|