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

代码片段和文件信息
#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
相关资源
- VisualStudioUninstaller vs卸载工具
- 组态王驱动开发包3.0.0.7(中文)
- 多窗口后台鼠标连点器
- 使用选择性重传协议实现UDP可靠通信
- 数据结构年终考题范围和答案 耿国华
- 数据结构 朱战力 习题解答 数据结构
- VC 获得文件属性 获取文件的创建时
- 读者写者问题(读者优先,写者优先
- 数据结构课程设计 6 1 彩票系统
- 用VC 编写的仿QQ聊天室程序源代码
- 教学计划编制系统
- 大数(链表、数组)实现
- 外点法程序
- 外罚函数程序
- qt-电子点菜系统
- 推箱子及人工智能寻路C 源代码
- 自己写的航空订票系统c 版--数据结构
- 数据结构实验魔王语言
- MUSIC算法c 实现
- C 餐厅叫号系统(QT平)
- 国际象棋c 完整版
- 航空订票系统_数据结构课程设计
-
ob
jectARX给Auto CAD加工具条 - 画图程序MFC/VC/VC CRectTracker 串行化
- MFC网络编程实例
- c 课程设计 职工信息管理系统
- VC 游戏编程—附源代码
- IpHlpApi.h&IpHlpApi.lib
- 清华大学 c 郑莉 ppt课件
- c 程序判断离散数学中命题公式
评论
共有 条评论