迷路探索の右手法での実装サンプルを見たところ、どうしてもわからない箇所があり、
サンプルの説明には、当該行は「移動方向の個数を割って余りを求めることで次の方向を決めている」そうなのですが、
なぜそうしているのかがわかりません。関連しておそらく理解できていないこととして、dir のリスト順になにか論理的な必然性があったりするものでしょうか?
python
1 2maze = [ 3 [9, 9, 9, 9, 9, 9], 4 [9, 0, 0, 0, 9, 9], 5 [9, 0, 9, 0, 1, 9], 6 [9, 0, 9, 0, 0, 9], 7 [9, 9, 9, 9, 9, 9], 8] 9 10 11dir = [[1,0], [0,1], [-1, 0], [0, -1]] 12 13x, y, depth, d = 1, 1, 0, 0 14 15while maze[x][y] != 1: 16 maze[x][y] = 2 17 18 for i in range(len(dir)): 19 j = (d + i -1) % len(dir) # この行です。 20 if maze[x + dir[j][0]][y + dir[j][1]] < 2: 21 x += dir[j][0] 22 y += dir[j][1] 23 d = j 24 depth += 1 25 break 26 elif maze[x + dir[j][0]][y + dir[j][1]] == 2: 27 x += dir[j][0] 28 y += dir[j][1] 29 d = j 30 depth -= 1 31 break 32 33print(depth)
回答1件
あなたの回答
tips
プレビュー