資源簡介
這是一個虛擬資源管理器的代碼,及其報告。數據課程的實習。拿出來分享一下。需要的可以下載,很全面。懶得同學不用改可以直接交給老師了

代碼片段和文件信息
#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源代碼\ba
?????文件?????????841??2015-04-28?13:13??張坤星\Explorer源代碼\ba
?????文件?????????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
評論
共有 條評論