Python实现的栈、队列、文件目录遍历操作示例

作者:微信1257309054 时间:2022-06-10 00:12:35 

本文实例讲述了Python实现的栈、队列、文件目录遍历操作。分享给大家供大家参考,具体如下:

一、 栈与队列

1、 栈 stack

特点:先进先出[可以抽象成竹筒中的豆子,先进去的后出来] 后来者居上


mystack = []
#压栈[向栈中存数据]
mystack.append(1)
print(mystack)
mystack.append(2)
print(mystack)
mystack.append(3)
print(mystack)
#出栈[从栈中取数据]
mystack.pop()
print(mystack)
mystack.pop()
print(mystack)

2、 队列 queue

特点: 先进先出[可以抽象成一个平放的水管]


#导入数据结构的集合
import collections
queue = collections.deque([1, 2, 3, 4, 5])
print(queue)
#入队[存数据]
queue.append(8)
print(queue)
queue.append(9)
print(queue)
#取数据
print(queue.popleft())
print(queue)

二、 目录遍历

1、 递归遍历目录


import os
def diguigetAllDir(path,suojin):
 # 如果文件夹中只有文件则返回
 if os.path.isfile(path):
   return
 # 如果为空文件夹则返回
 list1 = os.listdir(path)
 if len(list1) == 0:
   return
 # 遍历list1列表
 for item in list1:
   print(' '*suojin,'%s'%item)
   path1 = os.path.join(path,item)
   if os.path.isdir(path1):
     diguigetAllDir(path1, suojin + 4)
# 遍历当前目录
diguigetAllDir(os.getcwd(),0)

2、 栈模拟递归遍历目录

也称为深度遍历


import os
def stackGetAllDir(path):
 if not os.listdir(path):
   return
 liststack = [path]
 listsuojin = [0]
 print(liststack)
 while len(liststack) != 0:
   path = liststack.pop() #路径出栈
   suojin = listsuojin.pop()  #缩进空格个数出栈
   print(' ' * suojin, os.path.basename(path))
   if os.path.isdir(path):
     for i in os.listdir(path): #遍历路径下的全部文件
       listsuojin.append(suojin +4)
       liststack.append(os.path.join(path,i)) #文件名拼接成相对路径后入栈
# 遍历当前目录
stackGetAllDir(os.getcwd())

3、 队列模拟递归遍历目录

也被称为广度遍历


import os
import collections
def queueGetAllDir(path=" "):
 if not os.listdir(path):
   return
 queue = collections.deque()
 queue.append(path)
 while len(queue) != 0:
   filePath = queue.popleft()
   fileList = os.listdir(filePath) #遍历filePath路径下的目录
   for filename in fileList:
     absFilePath = os.path.join(filePath,filename) #路径拼接
     if os.path.isdir(absFilePath):
       print("目录:",filename)
       queue.append(absFilePath)
     else:
       print("文件:",filename)
# 遍历当前目录
queueGetAllDir(os.getcwd())

希望本文所述对大家Python程序设计有所帮助。

来源:https://blog.csdn.net/lm_is_dc/article/details/80081904

标签:Python,栈,队列,文件目录遍历
0
投稿

猜你喜欢

  • Python3实现获取图片文字里中文的方法分析

    2023-09-19 09:31:34
  • Python实现的自定义多线程多进程类示例

    2023-11-16 08:52:15
  • python调用百度地图WEB服务API获取地点对应坐标值

    2021-06-05 18:21:28
  • MySQL大表中重复字段的高效率查询方法

    2024-01-15 09:55:08
  • python linecache读取行更新的实现

    2021-01-26 01:33:06
  • Python查找最长不包含重复字符的子字符串算法示例

    2021-05-25 23:05:02
  • python十进制转二进制的详解

    2023-06-07 23:39:33
  • hadoop迁移数据应用实例详解

    2022-12-28 01:29:45
  • SQL Server中使用DTS设计器进行数据转移

    2009-01-08 16:15:00
  • ASP|HTML]单引与双引号

    2008-03-12 11:42:00
  • python异常和文件处理机制详解

    2023-12-13 11:46:13
  • 一篇文章搞懂:词法作用域、动态作用域、回调函数及闭包

    2022-10-01 00:21:05
  • 如何用mysql自带的定时器定时执行sql(每天0点执行与间隔分/时执行)

    2024-01-16 01:58:31
  • Python实现爬虫设置代理IP和伪装成浏览器的方法分享

    2021-05-26 19:42:29
  • python中from module import * 的一个坑

    2021-10-29 08:23:51
  • Python高并发和多线程有什么关系

    2023-12-08 04:24:47
  • 五种SQL Server分页存储过程的方法及性能比较

    2024-01-17 03:49:18
  • 基于Python3中运算符 **和*的区别说明

    2023-12-17 02:22:06
  • 图文详解SQL Server 2008R2使用教程

    2024-01-19 10:52:38
  • 基于python指定包的安装路径方法

    2023-06-04 03:10:02
  • asp之家 网络编程 m.aspxhome.com