STL-函数对象、谓词、常用算法

函数对象

函数对象概念

重载函数调用操作符的类,其对象常称为函数对象

函数对象使用重载的()时,行为类似函数调用,也叫仿函数

本质:

函数对象(仿函数)是一个,不是一个函数

函数对象使用

特点:

  • 函数对象在使用时,可以想普通函数那样调用,可以有参数,可以有返回值
  • 函数对象超出普通函数的概念,函数对象可以有自己的状态
  • 函数对象可以作为参数传递
//函数对象在使用时,可以像普通函数那样调用,可以有参数,可以有返回值
class MyAdd
{
public:int operator()(int a, int b){return a + b;}
};
//函数对象超出普通函数的概念,函数对象可以有自己的状态
class MyPrint
{
public:MyPrint(){this->m_Count = 0;}void operator()(string test){cout << test << endl;m_Count++;}int m_Count;
};
//函数对象可以作为参数传递
void doPrint(MyPrint& mp, string test)
{mp(test);
}
void test01()
{//函数对象在使用时,可以像普通函数那样调用,可以有参数,可以有返回值MyAdd add;cout << add(10, 20) << endl;//函数对象超出普通函数的概念,函数对象可以有自己的状态MyPrint myPrint;myPrint("hello world");myPrint("hello world");myPrint("hello world");myPrint("hello world");myPrint("hello world");cout << "打印次数:" << myPrint.m_Count << endl;//函数对象可以作为参数传递doPrint(myPrint, "hello c++");
}

谓词

谓词概念

返回bool类型仿函数称为谓词

如果operator()接受一个参数,那么叫做一元谓词

如果operator()接受两个参数,那么叫做二元谓词

//返回bool类型的仿函数称为谓词
//一元谓词 - 大于5
class greaterFive
{
public:bool operator()(int val){return val > 5;}
};void test01()
{vector<int>v;for (int i = 0; i < 10; ++i){v.push_back(i);}vector<int>::iterator it = find_if(v.begin(), v.end(), greaterFive());if (it == v.end()){cout << "没找到" << endl;}else{cout << "找到大于5的数为:" << *it << endl;}
}

二元谓词之前已经提过,排序的方式修改

内建函数对象

内建函数对象意义

STL内建了一些函数对象

分类:

算术仿函数

关系仿函数

逻辑仿函数

用法:

这些仿函数所产生的对象,用法和一般函数完全相同

使用内建函数对象,需要引入头文件#include<fucntional>

算术仿函数

功能描述:

实现四则运算

其中negate是一元运算,其他都是二元运算

仿函数类型:

void test01()
{negate<int>n;cout<<n(30)<<endl;plus<int>p;cout<<p(10, 20)<<endl;
}

注意:使用内建函数对象,需要引入头文件#include<fucntional>

关系仿函数

功能描述:

实现关系对比

仿函数原型:

void printVector(vector<int>& v)
{for (vector<int>::iterator it = v.begin(); it != v.end();++it){cout << *it << " ";}cout << endl;
}
class Larger
{
public:bool operator()(int num1, int num2){return num1 > num2;}
};
void test01()
{vector<int>v;v.push_back(10);v.push_back(30);v.push_back(40);v.push_back(20);printVector(v);sort(v.begin(), v.end());printVector(v);//从大到小排序// 方法1. 自定义仿函数// sort(v.begin(), v.end(), Larger());//方法2. 内建关系仿函数sort(v.begin(), v.end(), greater<int>());printVector(v);
}

关系仿函数中最常用的就是greater<>大于

逻辑仿函数

实现逻辑运算

函数原型:

class print02
{
public:void operator()(bool num){cout << num << " ";}
};
class Transform
{
public:int operator()(int num){return num+1;}
};
void test01()
{vector<bool>v;v.push_back(true);v.push_back(false);v.push_back(true);v.push_back(true);for_each(v.begin(), v .end(), print02());cout << endl;//搬运vector<bool>v2; //目标容器v2.resize(v.size()); //目标容器,需要提前开辟空间transform(v.begin(), v.end(), v2.begin(), logical_not<int>());for_each(v2.begin(), v2.end(), print02());cout << endl;
}

STL-常用算法

  • 算法主要是由头文件<algorithm><functional><numeric>组成。
  • <algorithm>是所有STL头文件中最大的一个,范围涉及到比较、交换、查找、遍历操作、复制、修改等等
  • <numeric>体积很小,只包括几个在序列上面进行简单数学运算的模板函数
  • <functional>定义了一些模板类,用以声明函数对象。

常用遍历算法

for_each //遍历容器

transform //搬运容器到另一个容器中

for_each

函数原型:

//普通函数
void print01(int num)
{cout << num << " ";
}
//仿函数
class print02
{
public:void operator()(int num){cout << num << " ";}
};
void test01()
{vector<int>v;v.push_back(10);v.push_back(40);v.push_back(30);v.push_back(20);//遍历算法for_each(v.begin(), v.end(), print01);cout << endl;for_each(v.begin(), v.end(), print02());
}
transform

函数原型:

class Transform
{
public:int operator()(int num){return num+1;}
};
void test01()
{vector<int>v;v.push_back(10);v.push_back(40);v.push_back(30);v.push_back(20);//搬运vector<int>v2; //目标容器v2.resize(v.size()); //目标容器,需要提前开辟空间transform(v.begin(), v.end(), v2.begin(), Transform());for_each(v2.begin(), v2.end(), print02());cout << endl;
}

常用查找算法

算法简介

find

功能描述:查找指定元素,找到返回指定元素的迭代器,找不到返回结束迭代器end()

函数原型:

void test01()
{vector<int>v;v.push_back(10);v.push_back(20);v.push_back(30);v.push_back(14);for_each(v.begin(), v .end(), print02());cout << endl;vector<int>::iterator it = find(v.begin(), v.end(), 20);if (it == v.end()){cout << "没有找到" << endl;}else{cout << "找到了:" << *it << endl;}
}
class Person
{
public:Person(string name, int age){m_Name = name;m_Age = age;}bool operator==(const Person& p){if (this->m_Name == p.m_Name && this->m_Age == p.m_Age){return true;}else{return false;}}string m_Name;int m_Age;
};
void test02()
{vector<Person>v;Person p1("top", 10);Person p2("as", 32);Person p3("bob", 43);Person p4("tony", 38);v.push_back(p1);v.push_back(p2);v.push_back(p3);v.push_back(p4);Person pp("as", 32);vector<Person>::iterator it = find(v.begin(), v.end(), pp);if (it == v.end()){cout << "没找到" << endl;}else{cout << "找到了,姓名:" << it->m_Name << ",年龄:" << it->m_Age << endl;}
}
find_if

功能描述:

按条件查找元素

函数原型:

class greaterFive
{
public:bool operator()(int val){return val > 15;}
};
void test01()
{vector<int>v;v.push_back(10);v.push_back(20);v.push_back(30);v.push_back(14);for_each(v.begin(), v .end(), print02());cout << endl;vector<int>::iterator it = find_if(v.begin(), v.end(), greaterFive());if (it == v.end()){cout << "没有找到" << endl;}else{cout << "找到了:" << *it << endl;}
}
class Person
{
public:Person(string name, int age){m_Name = name;m_Age = age;}bool operator==(const Person& p){if (this->m_Name == p.m_Name && this->m_Age == p.m_Age){return true;}else{return false;}}string m_Name;int m_Age;
};
class greater20
{
public:bool operator()(const Person& p){return p.m_Age > 20;}
};
void test02()
{vector<Person>v;Person p1("top", 10);Person p2("as", 32);Person p3("bob", 43);Person p4("tony", 38);v.push_back(p1);v.push_back(p2);v.push_back(p3);v.push_back(p4);Person pp("as", 32);vector<Person>::iterator it = find_if(v.begin(), v.end(), greater20());if (it == v.end()){cout << "没找到" << endl;}else{cout << "找到了,姓名:" << it->m_Name << ",年龄:" << it->m_Age << endl;}
}
adjacent_find

查找相邻重复元素

函数原型:

void test01()
{vector<int>v;v.push_back(10);v.push_back(20);v.push_back(10);v.push_back(30);v.push_back(14);v.push_back(14);vector<int>::iterator it = adjacent_find(v.begin(), v.end());if (it == v.end()){cout << "未找到" << endl;}else{cout << "已找到:" << *it << endl;}  
}
binary_search

查找指定元素是否存在

函数原型:

void test01()
{vector<int>v;for (int i = 0; i < 10; ++i){v.push_back(i);}bool judge = binary_search(v.begin(), v.end(), 4);if (judge){cout << "找到了" << endl;}else{cout << "未找到" << endl;}
}

注意:二分查找法查找效率虽然高,但查找的容器中元素必须是有序序列

count

统计元素个数

函数原型:

void test01()
{vector<int>v;v.push_back(12);v.push_back(34);v.push_back(32);v.push_back(4);v.push_back(12);v.push_back(12);int sum = count(v.begin(), v.end(), 12);cout << "12有" << sum << "个" << endl;}
class Person
{
public:Person(string name, int age){m_Name = name;m_Age = age;}bool operator==(const Person& p){if (this->m_Age == p.m_Age){return true;}else{return false;}}string m_Name;int m_Age;
};void test02()
{vector<Person>v;Person p1("top", 10);Person p2("as", 32);Person p3("bob", 32);Person p4("tony", 38);v.push_back(p1);v.push_back(p2);v.push_back(p3);v.push_back(p4);Person pp("sq", 32);int sum = count(v.begin(), v.end(), pp);cout << "与sq同岁的人有" << sum << "个" << endl;
}
count_if
void test01()
{vector<int>v;v.push_back(12);v.push_back(34);v.push_back(32);v.push_back(4);v.push_back(16);v.push_back(12);int sum = count_if(v.begin(), v.end(), greaterFive());cout << "大于5有" << sum << "个" << endl;
}
class Person
{
public:Person(string name, int age){m_Name = name;m_Age = age;}string m_Name;int m_Age;
};
class AgeGreater20
{
public:bool operator()(const Person&p){return p.m_Age > 20;}
};
void test02()
{vector<Person>v;Person p1("top", 10);Person p2("as", 32);Person p3("bob", 32);Person p4("tony", 38);Person p5("pig", 43);v.push_back(p1);v.push_back(p2);v.push_back(p3);v.push_back(p4);v.push_back(p5);Person pp("sq", 32);int sum = count_if(v.begin(), v.end(), AgeGreater20());cout << "大于20的人有" << sum << "个" << endl;
}

常用排序算法

sort

函数原型:

class print02
{
public:void operator()(int num){cout << num << " ";}
};
class greaterInt
{
public:bool operator()(int a, int b){return a > b;}
};
void test01()
{vector<int> v;v.push_back(10);v.push_back(30);v.push_back(40);v.push_back(20);v.push_back(50);sort(v.begin(), v.end());//升序for_each(v.begin(), v.end(), print02());cout << endl;//降序//sort(v.begin(), v.end(), greater<int>());sort(v.begin(), v.end(), greaterInt());for_each(v.begin(), v.end(), print02());cout << endl;
}
random_shuffle

洗牌,指定范围内的元素随机调整次序

函数原型:

void test01()
{srand((unsigned int)time(NULL));vector<int> v;for (int i = 0; i < 10; ++i){v.push_back(i);}for_each(v.begin(), v.end(), print02());cout << endl;//利用洗牌算法 打乱顺序random_shuffle(v.begin(), v.end());for_each(v.begin(), v.end(), print02());cout << endl;
}

random_shuffle洗牌算法较实用,记得加随机种子

merge

两个有序的容器元素合并,并存储到另一容器中

合并之后的容器依旧是有序的

函数原型:

reverse

反转元素

函数原型:

void test01()
{srand((unsigned int)time(NULL));vector<int> v;for (int i = 0; i < 10; ++i){v.push_back(i);}for_each(v.begin(), v.end(), print02());cout << endl;reverse(v.begin(), v.end());for_each(v.begin(), v.end(), print02());cout << endl;
}

常用拷贝和替换算法

copy

copy(v.begin(), v.end(), v2.begin());

void test01()
{srand((unsigned int)time(NULL));vector<int> v;vector<int> v2;for (int i = 0; i < 10; ++i){v.push_back(i);}for_each(v.begin(), v.end(), print02());cout << endl;v2.resize(v.size());copy(v.begin(), v.end(), v2.begin());for_each(v2.begin(), v2.end(), print02());cout << endl;
}
replace

void test01()
{srand((unsigned int)time(NULL));vector<int> v;for (int i = 0; i < 10; ++i){v.push_back(i);}v.push_back(2);v.push_back(2);for_each(v.begin(), v.end(), print02());cout << endl;replace(v.begin(), v.end(), 2, 200);//将所有2改为200for_each(v.begin(), v.end(), print02());cout << endl;
}
replace_if

函数原型:

void test01()
{srand((unsigned int)time(NULL));vector<int> v;for (int i = 0; i < 10; ++i){v.push_back(i);}v.push_back(2);v.push_back(2);for_each(v.begin(), v.end(), print02());cout << endl;replace_if(v.begin(), v.end(), greaterFive(), 6);//将所有大于5的改为6for_each(v.begin(), v.end(), print02());cout << endl;
}
swap

函数原型:

常用算术生成算法

算法生成算法属于小型算法,使用时包含头文件#include<numeric>

accumulate

计算区间内 容器元素累计总和

函数原型:

#include<numeric>
void test01()
{vector<int> v;for (int i = 0; i <= 100; ++i){v.push_back(i);}//参数3是其实累加值int total = accumulate(v.begin(), v.end(), 0); //5050total = accumulate(v.begin(), v.end(), 1000);//6050//for_each(v.begin(), v.end(), print02());cout << total<< endl;
}
fill

向容器中填充指定的元素

函数原型:

void test01()
{vector<int>v;v.resize(10);//初始化10个0fill(v.begin(), v.end(), 100);//将0重新填充为100
}

常用集合算法

set_intersection

交集:

例:

v1: 0 1 2 3 4 5 6 7 8 9 10

v2: 5 6 7 8 9 10 11 12 13 14 15

交集: 5 6 7 8 9 10

两个集合必须是有序序列!!

void test01()
{vector<int> v;vector<int> v2;for (int i = 0; i <= 10; ++i){v.push_back(i);v2.push_back(i+5);}vector<int>vTarget;//目标容器需要提前开辟空间//最特殊情况也是占用空间最大情况:大容器包含小容器,//故开辟空间时取最小容器的sizevTarget.resize(min(v.size(), v2.size()));//获取交集//返回目标容器的最后一个元素的迭代器地址	vector<int>::iterator itEnd = set_intersection(v.begin(), v.end(), v2.begin(), v2.end(), vTarget.begin());for_each(vTarget.begin(), itEnd, print02());cout << endl;
}
set_union

求集合并集

例:

v1: 0 1 2 3 4 5 6 7 8 9 10

v2: 5 6 7 8 9 10 11 12 13 14 15

并集: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15

void test01()
{vector<int> v;vector<int> v2;for (int i = 0; i <= 10; ++i){v.push_back(i);v2.push_back(i+5);}for_each(v.begin(), v.end(), print02());cout << endl;for_each(v2.begin(), v2.end(), print02());cout << endl;vector<int>vTarget;//目标容器需要提前开辟空间//最特殊情况也是占用空间最大情况:两个容器没有交集,//并集就是两个容器size相加vTarget.resize(v.size()+v2.size());//获取并集vector<int>::iterator itEnd = set_union(v.begin(), v.end(), v2.begin(), v2.end(), vTarget.begin());for_each(vTarget.begin(), itEnd, print02());cout << endl;
}
set_difference

差集

例:

v1: 0 1 2 3 4 5 6 7 8 9 10

v2: 5 6 7 8 9 10 11 12 13 14 15

v1和v2容器的差集: 0 1 2 3 4

v2和v1容器的差集:11 12 13 14 15

void test01()
{vector<int> v;vector<int> v2;for (int i = 0; i <= 10; ++i){v.push_back(i);v2.push_back(i+5);}for_each(v.begin(), v.end(), print02());cout << endl;for_each(v2.begin(), v2.end(), print02());cout << endl;vector<int>vTarget;//目标容器需要提前开辟空间//最特殊情况也是占用空间最大情况:两个容器没有交集,//差集就是两个容器中大的size作为目标容器开辟空间vTarget.resize(max(v.size(), v2.size()));//获取v1和v2的差集cout << "v1和v2的差集为:" << endl;vector<int>::iterator itEnd = set_difference(v.begin(), v.end(), v2.begin(), v2.end(), vTarget.begin());for_each(vTarget.begin(), itEnd, print02());cout << endl;cout << "v2和v1的差集为:" << endl;itEnd = set_difference(v2.begin(), v2.end(), v.begin(), v.end(), vTarget.begin());for_each(vTarget.begin(), itEnd, print02());cout << endl;
}

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

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

相关文章

嵌入式单片机上练手的小型图形库

大家好&#xff0c;今天分享一款小型的图形库。 Tiny Graphics Library&#xff1a; http://www.technoblogy.com/show?23OS 这个小型图形库提供点、线和字符绘图命令&#xff0c;用于 ATtiny85 上的 I2C 128x64 OLED 显示器. 它通过避免显示缓冲器来支持RAM有限的处理器&…

tcpdump常用命令

需要安装 tcpdump wireshark ifconfig找到网卡名称 eth0, ens192... tcpdump需要root权限 网卡eth0 经过221.231.92.240:80的流量写入到http.cap tcpdump -i eth0 host 221.231.92.240 and port 80 -vvv -w http.cap ssh登录到主机查看排除ssh 22端口的报文 tcpdump -i …

银行家算法——C语言实现

算法思路 将操作系统看作是银行家&#xff0c;操作系统所拥有的资源就相当于银行家所拥有的资产&#xff0c;进程向操作系统申请资源就相当于资产家向银行贷款&#xff0c;规定资产家在向银行贷款之前&#xff0c;先申明其所贷数额的最大值&#xff0c;申明之后其贷款的数额不…

数据结构与算法-时间复杂度与空间复杂度

数据结构与算法 &#x1f388;1.概论&#x1f52d;1.1什么是数据结构&#xff1f;&#x1f52d;1.2什么是算法&#xff1f; &#x1f388;2.算法效率&#x1f52d;2.1如何衡量一个算法的好坏&#xff1f;&#x1f52d;2.2算法的复杂度&#x1f52d;2.3时间复杂度&#x1f4d6;2…

软件设计师考试学习2

数据结构与算法基础 数组 稀疏矩阵 用代入法计算&#xff0c;A 数据结构的定义 非线性结构分为树和图&#xff0c;区别在于有没有环路 顺序表与链表 引入头节点可以使所有的节点处理方式一致 如果没有空的头节点&#xff0c;头节点需要单独处理 顺序存储与链式存储 查找…

AI-Chat,一款集全网ai功能的应用(附下载链接)

AI-Chat是一款综合性的聊天机器人&#xff0c;集成了多种先进的模型和功能。它采用了GPT4.0、联网版GPT和清华模型等多种模型&#xff0c;使得其具备更强大的语言处理能力。同时&#xff0c;AI-Chat还融合了AI绘画模型&#xff0c;例如Stable Diffusion绘画、文生图、图生图、艺…

LuatOS-SOC接口文档(air780E)--bit64 - 32位系统上对64位数据的基本算术运算和逻辑运算

bit64.to32(data64bit) 64bit数据转成32bit输出 参数 传入值类型 解释 string 9字节数据 返回值 返回值类型 解释 any 根据64bit数据输出int或者number 例子 无 bit64.to64(data32bit) 32bit数据转成64bit数据 参数 传入值类型 解释 int/number 32bit数据 …

oraenv Oracle_SID for sid in

Oracle 环境变量获取 for SID in ps -ef | grep pmon | grep -v grep | grep -v ASM | cut -d"_" -f3,4 do #export ORACLE_BASE/u01/app/grid #export ORACLE_HOME/u01/app/oracle/product/19.0.0/dbhome_2 #export ORACLE_SIDnoexist #export LD_LIBRARY_PAT…

基于下垂控制的并网逆变器控制MATLAB仿真模型

微❤关注“电气仔推送”获得资料&#xff08;专享优惠&#xff09; 主要模块&#xff1a; 建议使用MATLAB2021b及以上版本打开&#xff01; 功率计算模块、下垂控制模块、电压电流双环控制模块、虚拟阻抗压降模块 扰动设置&#xff1a; 在0.5秒到2秒始端设置0.25Hz的电网频…

手机上网流程解析

来看一个手机开机之后上网的流程&#xff0c;这个过程称为 Attach。可以看出来&#xff0c;移动网络还是很复杂的。因为这个过程要建立很多的隧道&#xff0c;分配很多的隧道 ID&#xff0c;所以我画了一个图来详细说明这个过程。 1、手机开机以后&#xff0c;在附近寻找基站 e…

Hadoop源码阅读(三):HDFS上传

说明&#xff1a; 1.Hadoop版本&#xff1a;3.1.3 2.阅读工具&#xff1a;IDEA 2023.1.2 3.源码获取&#xff1a;Index of /dist/hadoop/core/hadoop-3.1.3 (apache.org) 4.工程导入&#xff1a;下载源码之后得到 hadoop-3.1.3-src.tar.gz 压缩包&#xff0c;在当前目录打开Pow…

Sentinel整合Gateway

硬编码方式配置限流规则 pom引入依赖<dependency><groupId>com.alibaba.cloud</groupId><artifactId>spring-cloud-starter-alibaba-sentinel</artifactId> </dependency> <dependency><groupId>com.alibaba.cloud</group…

2023华为杯数学建模竞赛E题

一、前言 颅内出血&#xff08;ICH&#xff09;是由多种原因引起的颅腔内出血性疾病&#xff0c;既包括自发性出血&#xff0c;又包括创伤导致的继发性出血&#xff0c;诊断与治疗涉及神经外科、神经内科、重症医学科、康复科等多个学科&#xff0c;是临床医师面临的重要挑战。…

Mac下使用vscode远程到服务器时解决opencv显示图像的问题

问题背景 当你使用vscode远程到服务器进行开发的时候&#xff0c;想要显示图像会出现报错&#xff0c;时因为服务器没有GUI支持&#xff0c;不能直接显示图像。我在使用Mac的时候遇到了这个问题&#xff0c;给出解决的方案&#xff0c;搭建相关环境。 X11 Forwarding 在mac下…

Python之网络编程

一、网络编程 互联网时代,现在基本上所有的程序都是网络程序,很少有单机版的程序了。 网络编程就是如何在程序中实现两台计算机的通信。 Python语言中,提供了大量的内置模块和第三方模块用于支持各种网络访问,而且Python语言在网络通信方面的优点特别突出,远远领先其他语…

videoPlayer的播放

就是videoPlayer需要赋给他一个RenderTexture这个RenderTexture可以设置宽高在这个texture里面进行播放的视频&#xff0c;宽高会自动进行等比例缩放。之所以遇到这个问题&#xff0c;是因为视频宽高也需要自适应&#xff0c;但是来不及做策划就说按照1080*1920来做&#xff0c…

RabbitMQ配置文件_修改RabbitMQ MQTT的1883端口

Centos离线安装RabbitMQ并开启MQTT Docker安装rabbitMQ RabbitMQ集群搭建和测试总结_亲测 Docker安装RabbitMQ集群_亲测成功 rabbitmq.conf 默认没有配置文件,可以手动创建: /etc/rabbitmq/rabbitmq.conf # # RabbitMQ broker section # ## Related doc guide: https://…

SAP SMTP邮件功能配置技术手册

一、参数文件配置 本文以配置linux上的S4应用服务器SMTP为例 1、Linux(Unix)系统 定义连接到SMTP服务器的端口参数: is/SMTP/virt_host_<x>值:*:25; 定义SAP应用服务器邮件功能的协议及端口参数: icm/server_port_<x>值:PROT=SMTP,PORT=25000,TIMEOUT=…

iOS17适配指南-新版

文章目录 一、iOS17适配点二、具体代码 一、iOS17适配点 UIView与UIViewController。可以设置数据为空时的占位视图&#xff0c;增加SymbolAnimations&#xff0c;通过addSymbolEffect()与removeSymbolEffect()方法&#xff0c;可以实现SF Symbols图标的添加与移除动画。UIPag…

KT142C语音芯片flash型用户如何更新固件的说明_V2

目录 一、简介 2.1 让芯片进入PC模式 2.2 双击提供的exe程序即可 一、简介 正常的情况下&#xff0c;用户肯定是不需要更新固件的&#xff0c;因为芯片出厂默认就烧录了对应的程序固件&#xff0c;但是有客户可能需要小修小改&#xff0c;或者订制一下某些功能&#xff0c…