鱼C论坛

 找回密码
 立即注册
查看: 2855|回复: 1

请问25的课后作业这个运动代码原理是什么

[复制链接]
发表于 2022-10-11 09:53:38 | 显示全部楼层 |阅读模式

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

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

x
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)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-10-11 12:46:10 | 显示全部楼层
本帖最后由 jackz007 于 2022-10-11 13:48 编辑

        你应该明白,大家都很忙,没人愿意专门为你去看懂每一行代码,你应该把题目贴出来。
        再一个,你首先应该把根据自己的理解令你感到疑惑和不解的地方挑出来,进行针对性提问,大家都很忙,你懂的。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-10 11:40

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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