• 大小: 124KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-16
  • 语言: 其他
  • 标签: C++  数据结构  

资源简介

这是一个虚拟资源管理器的代码,及其报告。数据课程的实习。拿出来分享一下。需要的可以下载,很全面。懒得同学不用改可以直接交给老师了

资源截图

代码片段和文件信息

#include“baseNode.h“
#include
using namespace std;
baseNode::~baseNode()
{
delete &size;
delete &name;
delete &level;
}
baseNode::baseNode(string Name baseNode* Child baseNode* _brother )
{
name = Name;
child = Child;
brother = _brother;
}
string baseNode::getName()const
{
return name;
}
int baseNode::getSize()const
{
return size;
}
int baseNode::getLevel()const
{
return level;
}
baseNode* baseNode::getChild()const
{
return child;
}
baseNode* baseNode::getBrother()const
{
return brother;
}
void baseNode::setName(const string &Name)
{
name = Name;
}
void baseNode::setSize(int _size)
{
size = _size;
}
void baseNode::setLevel(int le)
{
level = le;
}
void baseNode::setChild(baseNode* _child)
{
child = _child;
}
void baseNode::setBrother(baseNode*_brother)
{
brother = _brother;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2015-04-28 13:31  张坤星\
     文件      142091  2015-10-28 09:41  张坤星\ADT报告.docx
     目录           0  2015-04-28 13:13  张坤星\Explorer源代码\
     文件         867  2014-12-06 13:40  张坤星\Explorer源代码\baseNode.cpp
     文件         841  2015-04-28 13:13  张坤星\Explorer源代码\baseNode.h
     文件         676  2014-11-30 12:13  张坤星\Explorer源代码\Disk.cpp
     文件         367  2015-04-28 13:13  张坤星\Explorer源代码\Disk.h
     文件        1078  2014-12-06 13:27  张坤星\Explorer源代码\File.cpp
     文件         505  2014-12-06 13:27  张坤星\Explorer源代码\File.h
     文件         943  2014-11-30 12:13  张坤星\Explorer源代码\Folder.cpp
     文件         528  2014-12-05 21:59  张坤星\Explorer源代码\Folder.h
     文件        1197  2014-12-07 08:41  张坤星\Explorer源代码\mian.cpp
     文件        6961  2014-12-07 09:48  张坤星\Explorer源代码\TreeManager.cpp
     文件        1393  2015-04-28 13:13  张坤星\Explorer源代码\TreeManager.h

评论

共有 条评论