循环遍历文件夹而不使用递归
我一直在寻找一种算法,因此操作系统在如何不使用递归的情况下循环文件夹方面不是问题。
递归不是答案,因为递归不能达到“无穷大”及以上,而“while 循环”可以到达那里。
编程语言并不重要。
I was looking for an algorithm, so OS is not problem, in how to loop through folders without the use of recursion.
Recursion is not the answer because recursion cannot go to "infinity" and beyond, while a "while loop" can get there.
Programming language doesn't matter.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将堆栈数据结构用于深度优先遍历。下面是一些 C# 示例代码:
You can use a stack data structure for depth-first traversal. Here is some sample code in C#: