栈的使用

Posted wfw001-2018

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了栈的使用相关的知识,希望对你有一定的参考价值。

import os
import collections

#通过栈遍历目录(深度遍历)
def test(path):
stack=[]
stack.append(path)
#处理栈
while len(stack)!=0:
dirpath=stack.pop()
filelist=os.listdir(dirpath)
for filename in filelist:
fileAbsPath=os.path.join(dirpath,filename)
if os.path.isdir(fileAbsPath):
stack.append(fileAbsPath)
else:
print("文件:"+filename)

path=r"C:UsersHPDesktoppython基础知识"
test1(path)



















以上是关于栈的使用的主要内容,如果未能解决你的问题,请参考以下文章

:栈 -- 栈的介绍实现方式(链表数组)应用场景快速入门(使用数组模拟栈的使用回文数)栈实现计算器

单调栈的使用

单调栈的使用

栈的使用

数据结构-队列和栈的使用

符号栈的使用