鱼C论坛

 找回密码
 立即注册
查看: 3003|回复: 4

[已解决]python 代码求助 按照顺时针螺旋顺序输出矩阵中的所有元素

[复制链接]
发表于 2022-12-8 09:09:46 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 成成是我 于 2022-12-12 08:36 编辑

请按照顺时针螺旋顺序输出矩阵中的所有元素
>>> matrix = [[1, 2, 3, 4],
...           [5, 6, 7, 8],
...           [9, 10, 11, 12]]

那么将输出:
[1, 2, 3, 4, 8, 12, 11, 10, 9, 5, 6, 7]


代码清单:
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.right 和botton 初始值为什么要-1?
2.请解释下循环范围
感谢感谢!
最佳答案
2022-12-9 17:20:07
# 从左往右遍历,首先是第一行既top=0保持不变,matrix[top]=[1, 2, 3, 4],col从0到right值就可以把matrix[top]的所有值取出来,既1, 2, 3, 4
for col in range(left, right + 1):
    result.append(matrix[top][col])   #行是确定的,即为top   
    # 从上往下遍历,这个时候从最右侧这列开始(最右侧这一列的第二个元素开始,因为这一列第一个元素既4已经在上面被取出来了),这一列的元素来着不同的matrix[row]的最后一个元素。既 8, 12
for row in range(top + 1, bottom + 1):
    result.append(matrix[row][right])   #列是确定的,即为right  
if left < right and top < bottom:
        # 从右往左遍历,这个时候从最下面一行开始(最下面一行的倒数第二个元素开始,因为这一行的最后第一个元素既12已经在上面被取出来了),既11, 10, 9。
    for col in range(right - 1, left, -1):
        result.append(matrix[bottom][col])  #行是确定的,即为botton
        # 从下往上遍历
    for row in range(bottom, top, -1):
        result.append(matrix[row][left])    #列是确定的,即为left
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-12-8 11:48:50 | 显示全部楼层
1、right表示最右侧一列(序号从left=0开始),bottom 表示最下面一行(序号从top=0开始)
2、每一个for循环都是先确定行或者列号,然后遍历剩下的数
for col in range(left, right + 1):
    result.append(matrix[top][col])   #行是确定的,即为top   
    # 从上往下遍历
for row in range(top + 1, bottom + 1):
    result.append(matrix[row][right])   #列是确定的,即为right  
if left < right and top < bottom:
        # 从右往左遍历
    for col in range(right - 1, left, -1):
        result.append(matrix[bottom][col])  #行是确定的,即为botton
        # 从下往上遍历
    for row in range(bottom, top, -1):
        result.append(matrix[row][left])    #列是确定的,即为left
   
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-12-9 17:20:07 | 显示全部楼层    本楼为最佳答案   
# 从左往右遍历,首先是第一行既top=0保持不变,matrix[top]=[1, 2, 3, 4],col从0到right值就可以把matrix[top]的所有值取出来,既1, 2, 3, 4
for col in range(left, right + 1):
    result.append(matrix[top][col])   #行是确定的,即为top   
    # 从上往下遍历,这个时候从最右侧这列开始(最右侧这一列的第二个元素开始,因为这一列第一个元素既4已经在上面被取出来了),这一列的元素来着不同的matrix[row]的最后一个元素。既 8, 12
for row in range(top + 1, bottom + 1):
    result.append(matrix[row][right])   #列是确定的,即为right  
if left < right and top < bottom:
        # 从右往左遍历,这个时候从最下面一行开始(最下面一行的倒数第二个元素开始,因为这一行的最后第一个元素既12已经在上面被取出来了),既11, 10, 9。
    for col in range(right - 1, left, -1):
        result.append(matrix[bottom][col])  #行是确定的,即为botton
        # 从下往上遍历
    for row in range(bottom, top, -1):
        result.append(matrix[row][left])    #列是确定的,即为left
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2022-12-9 17:29:07 | 显示全部楼层

嗯嗯,明白了,要把之前取出的数摘出去,谢谢啦
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-24 22:03

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表