博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux创建文件树,孩子兄弟树(或广义表),创建文件树及其訪问
阅读量:5806 次
发布时间:2019-06-18

本文共 7283 字,大约阅读时间需要 24 分钟。

假设在Linux下要訪问一个目录。

我们须要知道一下系统调用.

1.opendir(path); //注意path是绝对路径

2.ptr=readdir(dir);//dir 为opendir();正常打开的目录 DIR dir.假设弱国訪问dir下的全部目录后。readdir()返回NULL,struct dirent ptr; 记录了文件的基本内容

3.stat(file,&buf)//struct stat buf;//将file(文件的绝对路径)。的状态放入buf中

以下以一个小列子来说明,若和显示目录下文件的信息

#include 
#include
#include
#include
#include
int main(){ DIR *dir; struct dirent *ptr; char path[20]="/"; struct stat buf; if((dir=opendir(path))==NULL){//打开目录 perror("error:"); }else{ while((ptr=readdir(dir))!=NULL){//读取目录下的内容 char file[30]="/"; strcpy(file+strlen(file),ptr->d_name); lstat(file,&buf);//获取文件的绝对路径 printf("%s ",ptr->d_name);//输出文件名称 if(S_ISDIR(buf.st_mode)){//假设文件是目录,输出DIR printf(" DIR\n"); }else{ printf(" \n"); } } closedir(dir);//关闭目录子 } return 0;}
执行结果

显示了根文件夹下的情况.

2.若果要实现ls -R 的功能.

1.能够非常方便的递归訪问(可是系统栈有限有溢出可能)

2.我们用构造文件,文件夹树装结构.

a.我们能够以队列层次展开顺寻为.1,2,3,4,.....13;(对于整个文件系统若果用队列来存储的话,可能所需空间。不能得到满足,我们的程序可能无法获得这麽大的空间),而且顺序也不合理

b.我们建立局部(这里以完整的树为例,加上里面的free变为局部树),来实现所有先序的訪问.

1.分析我们对于一个文件夹,打开能够得到他的全部子文件夹,一次仅仅要我们获得一个根节点的位置,就可建立它与它的直接孩子的联系,在此时訪问这些孩子.

没有孩子

2.若没有不论什么孩子,且有右兄弟。那麽訪问有兄的的树.訪问它

3.没有孩子,没有有兄弟,那麽该节点的父亲节点为根的树已经所有訪问完成.此时若父亲节点有右孩子,那麽訪问它.

4.除2,3,且有父亲节点。那麽当前节点父亲节点作为当前节点,继续寻找知道出现1,2,就能够訪问,

有孩子

訪问首个孩子.

就这样能够用先序列訪问该树.

×在带吗运行中弱国端错说明堆当期那文件訪问权限不够×

#include 
#include
#include
#include
#include
#include
#include
#include
char path[5000];//文件夹长度int plength=0;long c=0;char temppath[5000];typedef struct node { char name[82];//记录位置的信息path[plength]+current->name来获取完整路径信息 struct node* child; struct node* brother; struct node* father;}*cbnode;cbnode getCbnode(){ //用于获得新的节点 cbnode cb=(cbnode)malloc(sizeof(struct node)); cb->child=cb->brother=cb->father=NULL; return cb;}cbnode list(const char * rootpath){//传递调用位置的操作,所要展开的文件树根节点 DIR *dir=NULL; struct dirent *ptr=NULL;//文件夹的列表项 struct stat buf;//获取文件加文件夹 strcpy(path,rootpath); plength=strlen(path);//获取路径长度 strcpy(temppath,path);//拷贝到当前路径情况 cbnode root=NULL,current=NULL; root=getCbnode();//获取当前节点 strcpy(root->name,rootpath); current=root; if((dir=opendir(current->name))==NULL){//初始给定非文件夹文件夹 printf("no such file or direct! %s\n",current->name); return NULL; } while(10){ int count=0;//当前訪问到第几个节点 cbnode previous=NULL;//除了第一个节点,其它节点都有上个节点 while((ptr=readdir(dir))!=NULL){//产生树遍历子文件夹输出 strcpy(temppath+plength,ptr->d_name); temppath[plength+strlen(ptr->d_name)]='\0';//得到详细文件位置 if(strcmp(ptr->d_name,".")&&strcmp(ptr->d_name,"..")){ printf("%s\n",temppath);//打印文件名 } if(lstat(temppath,&buf)==-1){ printf("stat error\n"); } if(S_ISDIR(buf.st_mode)&&strcmp(ptr->d_name,".")&&strcmp(ptr->d_name,"..")){ cbnode cb=getCbnode(); //printf("dirpath:%s\n",temppath); //printf("%s \n",temppath); strcpy(cb->name,ptr->d_name); strcat(cb->name,"/"); cb->name[strlen(cb->name)]='\0'; if(count==0){ previous=cb; current->child=cb; cb->father=current; }else{ //创建孩子链 previous->brother=cb; cb->father=previous->father; previous=cb; } count++; //printf("dir:%ld\n",c); } } closedir(dir); if(count==0){//假设该节点下没有子文件夹 while(10){ if(current->brother){ plength-=strlen(current->name); //free(current); current=current->brother; strcpy(path+plength,current->name); plength+=strlen(current->name); path[plength]='\0'; strcpy(temppath,path); break; }else if(current->father&¤t->father->brother){ plength-=(strlen(current->name)+strlen(current->father->name)); //free(current); current=current->father->brother; strcpy(path+plength,current->name); plength+=strlen(current->name); path[plength]='\0'; strcpy(temppath,path); break; }else if(current->father&¤t->father->brother==NULL){ plength-=strlen(current->name); path[plength]='\0'; // free(current); current=current->father;//寻找上个节点 strcpy(temppath,path); }else if(current->father==NULL){ return NULL;//訪问结束 }else{ printf("default\n"); } } dir=opendir(path); }else{ current=current->child; strcpy(path+plength,current->name);//当前节点为最后一个节 plength+=strlen(current->name); path[plength]='\0'; strcpy(temppath,path); dir=opendir(path); } }}int main(int argc,char *argv[]){ printf("%s\n",argv[1]); list(argv[1]); return 0;}#include
#include
#include
#include
#include
#include
#include
#include
char path[5000];//文件夹长度int plength=0;long c=0;char temppath[5000];typedef struct node { char name[82];//记录位置的信息path[plength]+current->name来获取完整路径信息 struct node* child; struct node* brother; struct node* father;}*cbnode;cbnode getCbnode(){ //用于获得新的节点 cbnode cb=(cbnode)malloc(sizeof(struct node)); cb->child=cb->brother=cb->father=NULL; return cb;}cbnode list(const char * rootpath){//传递调用位置的操作,所要展开的文件树根节点 DIR *dir=NULL; struct dirent *ptr=NULL;//文件夹的列表项 struct stat buf;//获取文件加文件夹 strcpy(path,rootpath); plength=strlen(path);//获取路径长度 strcpy(temppath,path);//拷贝到当前路径情况 cbnode root=NULL,current=NULL; root=getCbnode();//获取当前节点 strcpy(root->name,rootpath); current=root; if((dir=opendir(current->name))==NULL){//初始给定非文件夹文件夹 printf("no such file or direct! %s\n",current->name); return NULL; } while(10){ int count=0;//当前訪问到第几个节点 cbnode previous=NULL;//除了第一个节点。其它节点都有上个节点 while((ptr=readdir(dir))!=NULL){//产生树遍历子文件夹输出 strcpy(temppath+plength,ptr->d_name); temppath[plength+strlen(ptr->d_name)]='\0';//得到详细文件位置 if(strcmp(ptr->d_name,".")&&strcmp(ptr->d_name,"..")){ printf("%s\n",temppath);//打印文件名 } if(lstat(temppath,&buf)==-1){ printf("stat error\n"); } if(S_ISDIR(buf.st_mode)&&strcmp(ptr->d_name,".")&&strcmp(ptr->d_name,"..")){ cbnode cb=getCbnode(); //printf("dirpath:%s\n",temppath); //printf("%s \n",temppath); strcpy(cb->name,ptr->d_name); strcat(cb->name,"/"); cb->name[strlen(cb->name)]='\0'; if(count==0){ previous=cb; current->child=cb; cb->father=current; }else{ //创建孩子链 previous->brother=cb; cb->father=previous->father; previous=cb; } count++; //printf("dir:%ld\n",c); } } closedir(dir); if(count==0){//假设该节点下没有子文件夹 while(10){ if(current->brother){ plength-=strlen(current->name); //free(current); current=current->brother; strcpy(path+plength,current->name); plength+=strlen(current->name); path[plength]='\0'; strcpy(temppath,path); break; }else if(current->father&¤t->father->brother){ plength-=(strlen(current->name)+strlen(current->father->name)); //free(current); current=current->father->brother; strcpy(path+plength,current->name); plength+=strlen(current->name); path[plength]='\0'; strcpy(temppath,path); break; }else if(current->father&¤t->father->brother==NULL){ plength-=strlen(current->name); path[plength]='\0'; // free(current); current=current->father;//寻找上个节点 strcpy(temppath,path); }else if(current->father==NULL){ return NULL;//訪问结束 }else{ printf("default\n"); } } dir=opendir(path); }else{ current=current->child; strcpy(path+plength,current->name);//当前节点为最后一个节 plength+=strlen(current->name); path[plength]='\0'; strcpy(temppath,path); dir=opendir(path); } }}int main(int argc,char *argv[]){ printf("%s\n",argv[1]); list(argv[1]); return 0;}

你可能感兴趣的文章
VSCode缩进方式转换
查看>>
【只发精品】匠心打造Vue侧滑菜单组件
查看>>
Django初探一
查看>>
数据结构:快速排序代码(已优化)
查看>>
小猿圈python学习-生成器
查看>>
Kotlin Delegated Properties
查看>>
dart2笔记-类
查看>>
react native 之Githhub Poular项目分析
查看>>
对 iOS 中 GPU 编程的高度优化的框架 Metal
查看>>
<react学习笔记(7)>操作DOM节点,组件传参
查看>>
女程序员面试,面试官迟到半小时后嘲讽:你行不行啊!网友气坏了
查看>>
浅谈vuex
查看>>
漫话:如何给女朋友解释什么是并发和并行
查看>>
Android高级开发之【RxJava】详解(附项目源码)
查看>>
阅读人生
查看>>
RustCon Asia 实录 | Distributed Actor System in Rust
查看>>
Cocos2dx源码记录(5) CCRenderCommand
查看>>
Python学习笔记 - 下载图片
查看>>
验证提示框封装
查看>>
CDN WAF功能开放公测 提升网络应用安全性能
查看>>