享元模式(大话设计模式)C/C++版本

享元模式

C++

#include <iostream>
#include <string>
#include <map>
using namespace std;// 用户类 用户网站的客户账号,是"网站"类的外部状态
class User
{
private:string m_name;public:User(string name){m_name = name;}std::string GetName(){return m_name;}
};// 抽象网站类 定义对象的内部状态和外部状态及其对应的方法。
class WebSite
{
public:virtual ~WebSite() = default;virtual void Use(User user) = 0;
};// 此处为具体网站类  实现抽象享元角色的方法,在具体的角色中,实现具体方法时需要注意将内部状态与外部状态区分开,不应出现二者同时被修改的方法。
class ConcreteWebSite : public WebSite
{
private:string m_name;public:ConcreteWebSite(std::string name){m_name = name;}void Use(User user) override{cout << "网站分类:" << m_name << "  用户:" + user.GetName() << endl;}
};// 此处为网站工程类 负责创建和管理享元角色。当客户对象请求一个享元对象时,享元工厂检査系统中是否存在符合要求的享元对象,
// 如果存在则提供给客户;如果不存在的话,则创建一个新的享元对象。
class WebSiteFactory
{
private:std::map<std::string, WebSite *> flyweights;public:~WebSiteFactory(){for (auto it = flyweights.begin(); it != flyweights.end(); ++it)delete it->second;}WebSite *GetWebSiteCategory(string key){for (auto it = flyweights.begin(); it != flyweights.end(); ++it){if (it->first == key)return it->second;}WebSite *website = new ConcreteWebSite(key);flyweights.insert(pair<std::string, WebSite *>(key, website));return website;}int GetWebSiteCount(){return flyweights.size();}
};int main()
{WebSiteFactory f;WebSite *fx = f.GetWebSiteCategory("产品展示");fx->Use(User("小菜"));WebSite *fy = f.GetWebSiteCategory("产品展示");fy->Use(User("大鸟"));WebSite *fz = f.GetWebSiteCategory("产品展示");fz->Use(User("娇娇"));WebSite *fl = f.GetWebSiteCategory("博客");fl->Use(User("老顽童"));WebSite *fm = f.GetWebSiteCategory("博客");fm->Use(User("桃谷六仙"));WebSite *fn = f.GetWebSiteCategory("博客");fn->Use(User("南海鳄神"));cout << "得到网站分类总数:" << f.GetWebSiteCount() << endl;return 0;
}

C

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>// 定义哈希表的节点结构体
typedef struct HashNode
{char *key;void *value;struct HashNode *next;
} HashNode;// 定义哈希表结构体
typedef struct HashTable
{HashNode **table;size_t size;
} HashTable;// 创建哈希表
HashTable *create_hash_table(size_t size)
{HashTable *hash_table = malloc(sizeof(HashTable));hash_table->table = malloc(sizeof(HashNode *) * size);hash_table->size = size;memset(hash_table->table, 0, sizeof(HashNode *) * size);return hash_table;
}// 销毁哈希表
void destroy_hash_table(HashTable *hash_table)
{size_t i;for (i = 0; i < hash_table->size; ++i){HashNode *node = hash_table->table[i];while (node){HashNode *next = node->next;free(node->key);free(node->value);free(node);node = next;}}free(hash_table->table);free(hash_table);
}// 计算哈希值
size_t hash(const char *key, size_t size)
{size_t hash = 5381;int c;while ((c = *key++)){hash = ((hash << 5) + hash) + c;}return hash % size;
}// 在哈希表中插入键值对
bool insert_hash_table(HashTable *hash_table, const char *key, void *value)
{size_t index = hash(key, hash_table->size);HashNode *new_node = malloc(sizeof(HashNode));new_node->key = strdup(key);new_node->value = value;new_node->next = hash_table->table[index];hash_table->table[index] = new_node;return true;
}// 从哈希表中获取值
void *get_from_hash_table(HashTable *hash_table, const char *key)
{size_t index = hash(key, hash_table->size);HashNode *node = hash_table->table[index];while (node){if (strcmp(node->key, key) == 0){return node->value;}node = node->next;}return NULL;
}// 用户结构体
typedef struct User
{char *name;
} User;// 网站结构体
typedef struct Website
{char *name;
} Website;// 网站工厂结构体
typedef struct WebsiteFactory
{HashTable *flyweights;
} WebsiteFactory;// 创建用户
User *create_user(const char *name)
{User *user = malloc(sizeof(User));user->name = strdup(name);return user;
}// 销毁用户
void destroy_user(User *user)
{free(user->name);free(user);
}// 创建网站
Website *create_website(const char *name)
{Website *website = malloc(sizeof(Website));website->name = strdup(name);return website;
}// 销毁网站
void destroy_website(Website *website)
{free(website->name);free(website);
}// 使用网站
void use_website(Website *website, User *user)
{printf("网站分类:%s  用户:%s\n", website->name, user->name);
}// 创建网站工厂
WebsiteFactory *create_website_factory()
{WebsiteFactory *factory = malloc(sizeof(WebsiteFactory));factory->flyweights = create_hash_table(10);return factory;
}// 销毁网站工厂
void destroy_website_factory(WebsiteFactory *factory)
{destroy_hash_table(factory->flyweights);free(factory);
}// 从工厂获取网站
Website *get_website_category(WebsiteFactory *factory, const char *key)
{Website *website = get_from_hash_table(factory->flyweights, key);if (!website){website = create_website(key);insert_hash_table(factory->flyweights, key, website);}return website;
}int main()
{WebsiteFactory *f = create_website_factory();Website *fx = get_website_category(f, "产品展示");User *user_fx = create_user("小菜");use_website(fx, user_fx);destroy_user(user_fx);Website *fy = get_website_category(f, "产品展示");User *user_fy = create_user("大鸟");use_website(fy, user_fy);destroy_user(user_fy);Website *fz = get_website_category(f, "产品展示");User *user_fz = create_user("娇娇");use_website(fz, user_fz);destroy_user(user_fz);Website *fl = get_website_category(f, "博客");User *user_fl = create_user("老顽童");use_website(fl, user_fl);destroy_user(user_fl);Website *fm = get_website_category(f, "博客");User *user_fm = create_user("桃谷六仙");use_website(fm, user_fm);destroy_user(user_fm);Website *fn = get_website_category(f, "博客");User *user_fn = create_user("南海鳄神");use_website(fn, user_fn);destroy_user(user_fn);size_t count = 0;size_t i;for (i = 0; i < f->flyweights->size; ++i){if (f->flyweights->table[i]){++count;}}printf("得到网站分类总数:%zu\n", count);destroy_website_factory(f);return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/46209.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

鸿蒙HarmonyOS应用开发为何选择ArkTS不是Java?

前言 随着智能设备的快速发展&#xff0c;操作系统的需求也变得越来越多样化。为了满足不同设备的需求&#xff0c;华为推出了鸿蒙HarmonyOS。 与传统的操作系统不同&#xff0c;HarmonyOS采用了一种新的开发语言——ArkTS。 但是&#xff0c;刚推出鸿蒙系统的时候&#xff0…

linux文件处理----把一个文件拼接到另一个文件后

cat file1 file2 >> combined_filefile1 file2会依次加到指定的文件后面 查看文件里有多少行&#xff1a;wc -l filename 搜索某个文件里面是否包含字符串&#xff1a; grep "search-content" filename

代码随想录第六十五天|KMC47 参加科学大会

题1&#xff1a; 指路&#xff1a;47. 参加科学大会&#xff08;第六期模拟笔试&#xff09; (kamacoder.com) 思路与代码&#xff1a; 普通版&#xff1a; #include<iostream> #include<vector> #include<climits> using namespace std;int main() {int…

操作系统入门 -- 设备管理

操作系统入门 – 设备管理 1.设备控制器 1.1 意义 电脑本身可以外接多个输入输出设备&#xff0c;如键盘、鼠标、显示器等。由于这些设备的功能和特性不同&#xff0c;但是又需要由操作系统同一管理。为了屏蔽每个设备之间的差异&#xff0c;引入了设备控制器。设备控制器是…

JavaScript进阶(四)---js解构

目录 一.定义&#xff1a; 二.类型&#xff1a; 1.数组解构&#xff1a; 1.1变量和值不匹配的情况 1.2多维数组 2.对象解构 3.对象数组解构 4.函数参数解构 5.扩展运算符 一.定义&#xff1a; JavaScript 中的解构&#xff08;Destructuring&#xff09;是一种语法糖&…

Spring Web MVC入门(2)(请求1)

目录 请求 1.传递单个参数 2.传递多个参数 3.传递对象 4.后端参数重命名(后端参数映射) 非必传参数设置 5.传递数组 请求 访问不同的路径就是发送不同的请求.在发送请求时,可能会带一些参数,所以学习Spring的请求,主要是学习如何传递参数到后端及后端如何接收. 1.传递单…

Java时间复杂度介绍以及枚举

时间复杂度 从小到大&#xff1a; O(1) 常数阶。复杂度为O(1)与问题规模无关 线性阶 O&#xff08;n&#xff09;比如一个for循环中代码执行n遍 n阶 对数阶 int n9; int i1; while(i<n) { i*2; } 2^x>n时候退出。次数xlog2^n 时间复杂度为O(logN) 根号阶 int…

OpenGL笔记十之Shader类的封装

OpenGL笔记十之Shader类的封装 —— 2024-07-10 晚上 bilibili赵新政老师的教程看后笔记 code review! 文章目录 OpenGL笔记十之Shader类的封装1.运行2.目录结构3.main.cpp4.application4.1.CMakeLists.txt4.2.Application.h4.3.Application.cpp 5.assets5.1.shaders&#xf…

Hive及其架构简介

什么是 Hive &#xff1f; 一个基于 Hadoop 的数据仓库&#xff0c;适用于一些高延迟性的应用&#xff08;离线开发&#xff09;&#xff0c;可以将存储在 Hadoop 文件中的结构化、半结构化数据文件映射为一张数据库表&#xff0c;并基于表提供类似 SQL 的查询模型&#xff0c…

可移植性和跨平台性,你能分得清吗?

可移植性和跨平台性&#xff0c;你能分得清吗&#xff1f; 当你听到这两个名词&#xff0c;你能清楚的区分他们吗&#xff1f; 可移植性 > 环境 跨平台性 > 平台 首先先弄懂环境和平台的区别&#xff0c;环境是平台&#xff1f;平台就是环境&#xff1f; 平台&#x…

前一段时间比较火的刷网课平台源码,带数据库和教程

前一段时间比较火的刷网课平台源码&#xff0c;带数据库和教程。 好在疫情已经结束了&#xff0c;希望今后世上再无网课。 这个代码免费提供给大家学习开发用吧&#xff0c;作为一个php的入门学习案例用用还可以。 使用办法 网站根目录解压 打开nginx.htaccess文件&#x…

3.4、matlab实现SGM/BM/SAD立体匹配算法计算视差图

1、matlab实现SGM/BM/SAD立体匹配算法计算视差图简介 SGM&#xff08;Semi-Global Matching&#xff09;、BM&#xff08;Block Matching&#xff09;和SAD&#xff08;Sum of Absolute Differences&#xff09;都是用于计算立体匹配&#xff08;Stereo Matching&#xff09;的…

Contact Form联系表单自动发送邮件(超级简单)

前几天发现了aoksend推出的这个联系表单的组件&#xff0c;非常好用&#xff0c;只有一个php文件&#xff0c;把php文件放到网站主目录里面。然后去aoksend注册和配置好域名和发信邮箱&#xff0c;可以得到发送密钥&#xff1a;app_key&#xff0c;然后配置好邮件模板&#xff…

go 密码hash加密包 bcrypt

1.明文密码一般都会通过一套算法转成一条长长的字符串&#xff0c;密码验证这需要通过验证明文和加密字符串是否对应 2.go 有现成的hash算法包 "golang.org/x/crypto/bcrypt" 一般我们有一个工具包utils &#xff0c;在工具里封装两个方法即可&#xff0c; 即 明文…

数据库内核研发学习之路(二)postgres编译安装

我们在前面安装配置好环境之后&#xff0c;接下来就是去安装编译postgres&#xff0c;不是以前我们常用的一键化安装&#xff0c;而是根据源码进行编译安装。 1、获取postgres的15.2版本的源码 我这里获取的是15.2版本的源码&#xff0c;当然大家也可以获取其他版本的源码&am…

百度安全大模型智能体实践入选信通院“安全守卫者计划”优秀案例

7月3日&#xff0c;由全球数字经济大会组委会主办&#xff0c;中国信息通信研究院&#xff08;以下简称中国信通院&#xff09;与中国通信标准化协会联合承办的2024全球数字经济大会“云和软件安全论坛暨第二届SecGo云和软件安全大会”在北京召开。本届论坛聚焦云和软件安全最新…

Java学习笔记整理: 关于SpringBoot 2024/7/12;

SpringBoot springboot也是spring公司开发的一款框架。为了简化spring项目的初始化搭建的。 特点specialty&#xff1a; springboot的特点: 1&#xff09; 自动配置 Spring Boot的自动配置是一个运行时&#xff08;更准确地说&#xff0c;是应用程序启动时&#xff09;的过程&a…

Java中常用的util类库在Maven

Java中常用的util类库在Maven项目中通常以依赖的形式引入。以下是一些常用的util库及其Maven依赖。 Apache Commons Lang 3: 提供了很多工具类&#xff0c;如StringUtils, ArrayUtils等。 <dependency><groupId>org.apache.commons</groupId><artifactI…

new Date() 是 JavaScript 中用来创建日期和时间对象的构造函数。它能够生成当前日期和时间,或者根据提供的参数生成特定的日期和时间对象

new Date() 是 JavaScript 中用来创建日期和时间对象的构造函数。它能够生成当前日期和时间&#xff0c;或者根据提供的参数生成特定的日期和时间对象。以下是关于 new Date() 的详细说明&#xff0c;包括如何使用不同参数来创建日期对象以及如何操作日期对象。 创建 Date 对象…

RISC-V在线反汇编工具

RISC-V在线反汇编工具&#xff1a; https://luplab.gitlab.io/rvcodecjs/#q34179073&abifalse&isaAUTO 不过&#xff0c;似乎&#xff0c;只支持RV32I、RV64I、RV128I指令集&#xff1a;