【剑指offer】机器人的运动范围(python) 回溯是DFS的特例,每次搜索需要设置本次搜索的局部状态,并在本次搜索结束后清除状态,这里就是 mark[r][c]=True,标记这里已经遍历了。和“矩阵中的路径”思路差不多,这个简单些。 # -*- coding:utf-8 -*- class Solution: next = [[0,1],[0,-1],[1,0],[-1,0]] rows = 0 cols = 0 count = 0 def movingCount(self, threshold, rows, cols): # w...