开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
dfew
分支 (1)
标签 (1)
dfew
add_array
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
项目仓库所选许可证以仓库主分支所使用许可证为准
dfew
分支 (1)
标签 (1)
dfew
add_array
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
dfew
分支 (1)
标签 (1)
dfew
add_array
linux-sys
/
DesignPatterns
/
cpp
/
src
/
composite_pattern.cpp
linux-sys
/
DesignPatterns
/
cpp
/
src
/
composite_pattern.cpp
composite_pattern.cpp 3.15 KB
一键复制 编辑 原始数据 按行查看 历史
子安 提交于 2020年11月21日 23:42 +08:00 . 组合模式上传
//
// Created by andrew on 2020年11月21日.
//
#include <iostream>
#include <string>
#include <list>
using namespace std;
/*
* `Composite`模式也叫做组合模式,是构造型的设计模式之一。通过递归的手段构造树形的对象结构,并可以通过一个对象来访问整个对象树。
* */
class IFile {
public:
~IFile() {
}
virtual void display() = 0;
virtual int add(IFile *ifile) = 0;
virtual int remove(IFile *ifile) = 0;
virtual list<IFile *> *getChild() = 0;
};
class File : public IFile {
public:
// explicit 声明只有单个参数的构造函数
explicit File(string name) {
m_name = name;
}
void display() override {
cout << m_name << endl;
}
int add(IFile *ifile) override {
return -1;
}
int remove(IFile *ifile) override {
return -1;
}
list<IFile *> *getChild() override {
return NULL;
}
private:
string m_name;
};
// 目录节点
class Dir : public IFile {
public:
explicit Dir(string name) {
m_name = name;
m_list = new list<IFile *>;
m_list->clear();
}
void display() override {
cout << m_name << endl;
}
int add(IFile *ifile) override {
m_list->push_back(ifile);
return 0;
}
int remove(IFile *ifile) override {
m_list->remove(ifile);
return 0;
}
list<IFile *> *getChild() override {
return m_list;
}
private:
// 父目录中有一个或者多个子目录,因此是个链表, 子目录能通过父节点得到
string m_name;
list<IFile *> *m_list;
};
// 递归显示树
void showTree(IFile *root, int level) {
int i = 0;
if (root == NULL) {
return;
}
for (i == 0; i < level; i++)
{
printf("\t");
}
// 显示根节点
root->display();
// 若根节点有孩子
// 判断孩子是文件还是文件,显示名字
list<IFile *> *mylist = root->getChild(); // 获取子目录
if(mylist != NULL){
for (auto it = mylist->begin(); it != mylist->end(); it++){
if((*it)->getChild() == NULL)
{
// 不是目录就打印文件名 for循环是按照level等级将制表符打印出来
for(i = 0;i<=level;i++)
{
printf("\t");
}
(*it)->display();
} else
{
// 是目录就接着递归
showTree(*it, level+1);
}
}
}
}
int main(int argc, char *argv[]) {
Dir *root = new Dir("C");
Dir *dir1 = new Dir("111dir");
File *aFile = new File("a.txt");
// 获取root下的节点 孩子集合
list<IFile *> *mylist = root->getChild();
root->add(dir1);
root->add(aFile);
for(auto it=mylist->begin(); it != mylist->end(); it++)
{
(*it)->display();
}
Dir *dir2 = new Dir("dir2");
File *bFile = new File("b.txt");
dir1->add(dir2);
dir1->add(bFile);
cout << "通过 showTree 方式显示root节点下的所有子节点" << endl;
showTree(root,0);
cout << "composite pattern" << endl;
return 0;
}
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/andrewgithub/linux-sys.git
git@gitee.com:andrewgithub/linux-sys.git
andrewgithub
linux-sys
linux-sys
dfew
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /