网格遍历问题
可能的重复:
螺旋循环
给定一个任意高度和宽度的网格,编写一个算法来遍历它一个螺旋。 (从左上角开始,到中间结束),不越过以前访问过的节点。不使用嵌套循环。
Possible Duplicate:
Looping in a spiral
Given a grid of any height and width, write an algorithm to traverse it in a spiral. (Starting at the top left and ending in the middle) without passing over previously visited nodes. Without using nested loops.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它应该使用一个 for 循环并从左下角开始完成,我处于那种粗糙的状态
it should be done using one for loop and starting from bottom left, I'am in that coarse