当前位置: 首页 > news >正文

值得记忆的STL常用算法,分分钟摆脱容器调用的困境,以vector为例,其余容器写法类似

STL常用算法

概述

  1. 算法主要是由头文件<algorithm> <functional> <numeric>组成

  2. <algorithm>是所有STL头文件中最大的一个,范围涉及到比较、交换、查找、遍历操作、复制、修改等等

  3. <nuneric>体积很小,只包括几个在序列上面进行简单数学运算的模板函数

  4. <functional>定义了一些模板类,用以声明函数对象

1.常用遍历算法

算法简介

for_each遍历容器

transform搬运容器到另一个容器

1.for_each

功能描述

实现遍历容器

函数原型

for_each(iterator beg, iterator end, _func);

遍历算法 遍历容器中所有元素

beg开始迭代器

end结束迭代器

_func函数或者函数对象

示例

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
​
//常用遍历算法 for_each
​
//普通函数
void print01(int val)
{cout << val << " ";
}
​
//仿函数
class print02
{
public:void operator()(int val){cout << val << " ";}
};
​
void test()
{vector<int>v;for(int i = 0;i < 10; i++){v.push_back(i);}for_each(v.begin(), v.end(), print01);cout << endl;for_each(v.begin(), v.end(), print02());cout << endl;
}
​
int main()
{test();return 0;
}

总结:for_each在实实际开发中是最常用遍历算法,需要熟练掌握

2.transform

功能描述

搬运容器到另一个容器中

函数原型

tansform(iterator beg1, iterator end1, iterator beg2, _func);

beg1源容器开始迭代器

end1源容器结束迭代器

beg2目标容器开始迭代器

_func函数或者函数对象

示例

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
​
//常用遍历算法 transform
​
class Transform
{
public:int operator()(int v){return v;}
};
​
class print
{
public:int operator()(int val){cout << val << " ";}
};
​
void test()
{vector<int>v;for(int i = 0;i < 10; i++){v.push_back(i);}vector<int>vTarget;//目标容器vTarget.resize(v.size());//目标容器需要提前开辟空间transform(v.begin(), v.end(), vTarget.begin(), Transform());for_each(v.begin(), v.end(), print());
}
​
int main()
{test();return 0;
}

2.常用查找算法

算法简介

find查找元素

find_if按条件查找

adjacent_find查找相邻重复元素

binary_search二分查找

count统计元素个数

count_if按条件统计元素个数

1.find

功能描述

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

函数原型

find(iterator beg, iterator end, value);

按值查找元素,找到返回指定位置迭代器,找不到返回结束迭代器位置

beg开始迭代器

end结束迭代器

value查找的元素

代码

#include<iostream>
#include<vector>
#include<algorithm>
#include<string>
using namespace std;
​
//常用的查找算法 
//find
​
//查找 内指数据类型
void test01()
{vector<int>v;for(int i = 0;i < 10; i++){v.push_back(i);}//查找 容器中 是否有 5 这个元素vector<int>::iterator it = find(v.begin(), v.end(), 5);if(it == v.end()){cout << "没有找到!" << endl;}else{cout << "找到了!" << *it << endl;}
}
​
//查找 自定义数据类型
class Person
{
public:Person(string name, int age){this->m_Name = name;this->m_Age = age;}//重载 == 使底层find知道如何对比person数据类型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("zhangsan",18);Person p2("lisi",19);Person p3("wangwu",20);Person p4("zaholiu",21);Person p5("tangqi",22);//放入容器v.push_back(p1);v.push_back(p2);v.push_back(p3);v.push_back(p4);v.push_back(p5);Person p("wangwu",20);vector<Person>::iterator it = find(v.begin(), v.end(), p);if(it == v.end()){cout << "没有找到!" << endl;}else{cout << "找到了:" << "姓名为:" << it->m_Name << " 年龄为:" << it->m_Age << endl; }
}
​
int main()
{test01();test02();return 0;
}

2.find_if

功能描述

按条件查找元素

函数原型

find_if(iterator beg, iterator end, _Pred);

按值查找元素,找到返回指定位置迭代器,找不到返回结束迭代器位置

beg开始迭代器

end结束迭代器

_Pred函数或者谓词(返回bool类型的仿函数)

示例

#include<iostream>
#include<vector>
#include<string>
#include<algorithm>
using namespace std;
​
//常用查找算法 find_if
​
//1.查找内置数据类型
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;}
}
​
//2.查找自定义数据类型
class Person
{
public:Person(string name, int age){this->m_Name = name;this->m_Age = age;}string m_Name;int m_Age;
};
​
class GreaterT
{
public:bool operator()(Person &p){return p.m_Age > 20;}
};
​
void test02()
{vector<Person>v;Person p1("zhangsan",19);Person p2("lisi",20);Person p3("wangwu",21);Person p4("zhaoliu",22);v.push_back(p1);v.push_back(p2);v.push_back(p3);v.push_back(p4);//找年龄大于20岁的vector<Person>::iterator it = find_if(v.begin(), v.end(), GreaterT());if(it == v.end()){cout << "没有找到" << endl;}else{cout << "找到了姓名:" << it->m_Name << " 年龄:" << it->m_Age << endl;}
}
​
int main()
{test01();test02();return 0;
}

3.adjacent_find

功能描述

查找相邻重复元素

函数原型

adjacent_find(iterator beg,iterator end);

查找相邻里复元素返回相邻元素的第一个位置的迭代器

beg开始迭代器

end结束迭代器

示例

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
​
//常用查找算法 adjacent_find
void test()
{vector<int>v;v.push_back(0);v.push_back(2);v.push_back(0);v.push_back(3);v.push_back(1);v.push_back(4);v.push_back(3);v.push_back(3);vector<int>::iterator pos = adjacent_find(v.begin(), v.end());if(pos == v.end()){cout << "未找到相邻重复元素" << endl;}else{cout << "找到相邻重复元素:" << *pos << endl;}
}
int main()
{test();return 0;
}

4.binary_search

功能描述

查找指定元素是否存在

函数原型

bool binary_search(iterator beg,iterator end,value);

查找指定的元素,查到返回true否则false

注意:在无序序列中不可用

beg开始迭代器

end结束迭代器

value查找的元素

示例

#include<iostream>
#include<vector>
#include<algorithm>
​
//常用查找算法 binary_search
void test()
{vector<int>v;for(int i = 0;i < 10; i++){v.push_back(i);}//查找容器中是否有9 元素bool ret = binary_search(v.begin(), v.end(), 9);if(ret){cout << "找到了元素" << endl;}else{cout << "没有找到" << endl;}
}
​
int main()
{test();return 0;
}

总结:二分查找法查找效率很高,值得注意的是查找的容器中元素必须得是有序序列

5.count

功能描述

统计元素个数

函数原型

count(iterator beg,iterator end,value);

统计元素出现次数

beg开始迭代器

end结束迭代器

value统计的元素

示例

#include<iostream>
#include<string>
#include<vector>
#include<algorithm>
using namespace std;
​
//常用查找算法 count
​
//1.统计内置数据类型
void test1()
{vector<int>v;v.push_back(1);v.push_back(2);v.push_back(3);v.push_back(3);v.push_back(3);v.push_back(4);int num = count(v.begin(), v.end(), 3);cout << "3的元素个数:" << num << endl;
}
​
//2.统计自定义数据类型
class Person
{
public:Person(string name, int age){this->m_Name = name;this->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 test2()
{vector<Person>v;Person p1("aaa",18);Person p2("bbb",19);Person p3("ccc",20);Person p4("ddd",18);Person p5("eee",18);Person p6("fff",18);v.push_back(p1);v.push_back(p2);v.push_back(p3);v.push_back(p4);v.push_back(p5);v.push_back(p6);Person p7("ggg",18);int num = count(v.begin(), v.end(), p7);cout << "和p7年龄一样的有" << num << "个" << endl;
}
​
int main()
{test1();test2();return 0;
}

6.count_if

功能描述

按条件统计元素个数

函数原型

count_if(iterator beg, iterator end, _Pred);

按条件统计元素出现次数

beg开始迭代器

end结束迭代器

_Pred谓词

示例

#include<iostream>
#include<vector>
#include<string>
#include<algorithm>
using namespace std;
​
//1.内置数据类型统计
class Greater20
{
public:bool operator()(int val){return val > 20;}
};
​
void test()
{vector<int>v;v.push_back(10);v.push_back(40);v.push_back(30);v.push_back(20);int num = count_if(v.begin(), v.end(), Greater20());cout << "大于20的元素个数为:" << num << endl;
}
​
//2.自定义的数据类型
class Person
{
public:Person(string name, int age){this->m_Name = name;this->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;
};
​
class AgeGreater18
{
public:bool operator()(const Person & p){return p.m_Age == 18;}
};
​
void test1()
{vector<Person>v;Person p1("zhangsan",18);Person p2("lisi",18);Person p3("wangwu",19);Person p4("zhaoliu",18);v.push_back(p1);v.push_back(p2);v.push_back(p3);v.push_back(p4);int num = count_if(v.begin(), v.end(), AgeGreater18());cout << "18岁的人数:" << num << "个" << endl;
}
​
int main()
{test();test1();return 0;
}

3.常用排序算法

算法简介

sort对容器内元素进行排序

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

merge容器元素合并,并存储到另一容器中

reverse反转指定范围的元素

1.sort

功能描述

对容器内元素进行排序

函数原型

sort(iterator beg,iterator end,Pred);按值查找元素,找到返回指定位置迭代器,找不到返回结束迭代器位置

beg开始迭代器

end结束迭代器

_Pred谓词

示例

#include<iostream>
#include<vector>
#include<algorithm>
#include<functional>
using namespace std;
​
class print
{
public:operator()(int val){cout << val << " ";}
};
​
void test()
{vector<int>v;v.push_back(10);v.push_back(30);v.push_back(50);v.push_back(20);v.push_back(40);//利用sort进行升序sort(v.begin(), v.end());for_each(v.begin(), v.end(), print());cout << endl;//改为降序sort(v.begin(), v.end(), greater<int>());//greater内建函数for_each(v.begin(), v.end(), print());cout << endl;
}
​
int main()
{test();return 0;
}

2.random_shuffle

功能描述

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

函数原型

random_shuffle(iterator beg,iterator end);

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

beg开始迭代器

end结束迭代器

示例

#include<iostream>
#include<vector>
#include<algorithm>
#include<ctime>
using namespace std;
​
//常用排序算法 random_shuffle
class print
{
public:operator()(int val){cout << val << " ";}
};
​
void test()
{srand((unsigned int)time(NULL));vector<int>v;for(int i = 0;i < 10; i++){v.push_back(i);}//利用洗牌算法 打乱顺序random_shuffle(v.begin(), v.end());for_each(v.begin(), v.end(), print());
}
​
int main()
{test();return 0;
}

总结:random_shuffle洗牌算法比较实用,使用时记得加随机数种子

3.merge

功能描述

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

函数原型

merge(iterator beg1,iterator end1,iterator beg2,iterator end2,iterator dest);

容器元素合并,并存储到另一容器中

注意:两个容器必须是有序的,而且两个均为升序或降序

beg1容器1开始迭代器

end1容器1结束迭代器

beg2容器2开始迭代器

end2客器2结束送代器

dest目标容器开始迭代器

示例

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
​
//常用的排序算法 merge
//仿函数
class print
{
public:operator()(int val){cout << val << " ";}
};
​
void test()
{vector<int>v1;vector<int>v2;for(int i = 0;i < 10; i++){v1.push_back(i);v2.push_back(i+1);}//目标容器vector<int>vTarget;vTarget.resize(v1.size() + v2.size());merge(v1.begin(), v1.end(), v2.begin(), v2.end(), vTarget.begin());for_each(vTarget.begin(), vTarget.end(), print());cout << endl;
}
​
int main()
{test();return 0;
}

4.reverse

功能描述

将容器内元素进行反转

函数原型reverse(iterator beg,iterator end);

反转指定范围的元素

beg开始迭代器

end结束迭代器

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
​
//常用排序算法 reverse
class print
{
public:operator()(int val){cout << val << " ";}
};
​
void test()
{vector<int>v;for(int i = 0;i < 10; i++){v.push_back(i);}cout << "反转前:" << endl;for_each(v.begin(), v.end(), print());cout << endl;reverse(v.begin(), v.end());cout << "反转后:" << endl;for_each(v.begin(), v.end(), print());
}
​
int main()
{test();return 0;
}

4.常用拷贝和替换算法

算法简介

copy容器内指定范围的元素拷贝到另一容器中

replace将容器内指定范围的旧元素修改为新元素

replace_if容器内指定范围满足条件的元素替换为新元素

swap互换两个容器的元素

1.swap

功能描述

容器内指定范围的元素拷贝到另一容器中

函数原型

copy(iterator beg,iterator end,iterator dest);

按值查找元素,找到返回指定位置迭代器,找不到就返回结束迭代器位置

beg开始迭代器

end结束迭代器

dest目标超始迭代器

示例:

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
​
//常用拷贝和替换算法 copy
class print
{
public:operator()(int val){cout << val << " ";}
};
​
void test()
{vector<int>v1;for(int i = 0;i < 10; i++){v1.push_back(i);}vector<int>v2;v2.resize(v1.size());copy(v1.begin(), v1.end(), v2.begin());for_each(v2.begin(), v2.end(), print());cout << endl;
}
​
int main()
{test();return 0;
}

2.replace

功能描述

将容器内指定范围的旧元素核改为新元素

函数原型

replace(iterator beg,iterator end, oldvalue, newvalue);

将区间内旧元素替换成新元素

beg开始迭代器

end结束迭代器

oldvalue旧元素

newvalue新元素

示例

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
​
//常用拷贝和替换算法replace
class print
{
public:operator()(int val){cout << val << " ";}
};
​
void test()
{vector<int>v;v.push_back(20);v.push_back(30);v.push_back(40);v.push_back(30);v.push_back(40);v.push_back(10);v.push_back(20);v.push_back(20);cout << "替换前:" << endl;for_each(v.begin(), v.end(), print());cout << endl;//将20替换为200replace(v.begin(), v.end(), 20, 200);cout << "替换后:" << endl;for_each(v.begin(), v.end(), print());cout << endl;
}
​
int main()
{test();return 0;
}

3.replace_if

功能描述

将区间内满足条件的元素,苔换成指定元素

函数原型

replace_if(iterator beg,iterator end,_pred,newvalue);

按条件换元素,满足条件的替换成指定元素

beg开始迭代器

end结束迭代器

_pred谓词

newvalue替换的新元素

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
​
//常用拷贝和替换算法replace_if
class print
{
public:operator()(int val){cout << val << " ";}
};
​
class Greater
{
public:bool operator()(int val){return val > 30;}
};
​
void test()
{vector<int>v;v.push_back(20);v.push_back(30);v.push_back(40);v.push_back(30);v.push_back(40);v.push_back(10);v.push_back(20);v.push_back(20);cout << "替换前:" << endl;for_each(v.begin(), v.end(), print());cout << endl;//将大于30的替换为100replace_if(v.begin(), v.end(), Greater(), 100);cout << "替换后:" << endl;for_each(v.begin(), v.end(), print());cout << endl;
}
​
int main()
{test();return 0;
}

总结:replace_if按条件查找,可以利用仿函数灵活筛选满足的条件

4.swap

功能描述

互换两个容器的元素

函数原型: swap(container c1,container c2);互换两个容器的元素

c1容器1

c2容器2

示例

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
​
//常用拷贝和替换算法 swap
class print
{
public:operator()(int val){cout << val << " ";}
};
​
void test()
{vector<int>v1;vector<int>v2;for(int i = 0;i < 10; i++){v1.push_back(i);v2.push_back(i + 100);}cout << "交换前:" << endl;for_each(v1.begin(), v1.end(), print());cout << endl;for_each(v2.begin(), v2.end(), print());cout << endl;cout << "--------------------------" << endl;cout << "交换后:" << endl;swap(v1, v2);for_each(v1.begin(), v1.end(), print());cout << endl;for_each(v2.begin(), v2.end(), print());cout << endl;
}
​
int main()
{test();return 0;
}

5.常用算法生成算法

注意

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

算法简介accumulate计算容器元素累计总和

fill向容器中添加元素

1.accumulate

功能描述

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

函数原型accumulate(iterator beg,iterator end,value);

计算容器元素累计总和

beg开始迭代器

end结束迭代器

value起始值

示例

#include<iostream>
#include<vector>
#include<numeric>
using namespace std;
​
//常用算法生成算法
class print
{
public:operator()(int val){cout << val << " ";}
};
​
void test()
{vector<int>v;for(int i = 0;i <= 100; i++){v.push_back(i);}int total = accumulate(v.begin(), v.end(), 0);cout << "累计求和值为:" << total << endl;
}
​
int main()
{test();return 0;
}

总结:accumulate使用时头文件注意是numeric,这个算法很实用

2.fill

功能描述

向容器中填充相定的元素

函数原型

fill(iterator beg,iterator end,value);

向容器中填充元素

beg开始迭代器

end结束迭代器

value填充的值

示例

#include<iostream>
#include<vector>
#include<numeric>
#include<algorithm>
using namespace std;
​
//常用算法生成算法
class print
{
public:operator()(int val){cout << val << " ";}
};
​
void test()
{vector<int>v;v.resize(10);//后期重新填充fill(v.begin(), v.end(), 100);for_each(v.begin(), v.end(), print());
}
​
int main()
{test();return 0;
}

6.常用集合算法

算法简介

set_intersection求两个容器的交集

set_union求两个容器的并集

set_difference求两个容器的差集

 

1.set_intersection

功能描述

求两个容器的交集

函数原型

set_intersection(iterator beg1, iterator end1, iterator beg2, iterator end2, iterator dest);求两个集合的交集

示例

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
​
//常用集合算法
class print
{
public:operator()(int val){cout << val << " ";}
};
​
void test()
{vector<int>v1;vector<int>v2;for(int i = 0;i < 10; i++){v1.push_back(i);v2.push_back(i + 5);}vector<int>vTarget;//目标容器需要提前开辟空间//最特殊情况就是大容器包含小容器,开辟空间取小容器的size即可vTarget.resize(min(v1.size(), v2.size()));//获取交集vector<int>::iterator itEnd = set_intersection(v1.begin(), v1.end(), v2.begin(), v2.end(), vTarget.begin());for_each(vTarget.begin(), itEnd, print());
}
​
int main()
{test();return 0;
}

总结

求交集的两个集合必须的有序序列

目标容器开辟空间需要从两个容器中取小值

set_intersection返回值既是交集中最后一个元素的位置

2.set_union

功能描述

求两个集合的并集

函数原型

set_union(iterator begl, iterator end1, iterator beg2, iterator end2, iterator dest);

求两个集合的并集I

注意:两个集合必须是有序序列

beg1 容器1开始迭代器

end1 容器1结束迭代器

beg2 容器2开始迭代器

end2 容器2结束迭代器

dest目标容器开始迭代器

示例

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
​
//常用集合算法
class print
{
public:operator()(int val){cout << val << " ";}
};
​
void test()
{vector<int>v1;vector<int>v2;for(int i = 0;i < 10; i++){v1.push_back(i);v2.push_back(i + 5);}vector<int>vTarget;vTarget.resize(v1.size() + v2.size());vector<int>::iterator itEnd = set_union(v1.begin(), v1.end(), v2.begin(), v2.end(), vTarget.begin());for_each(vTarget.begin(), itEnd, print());
}
​
int main()
{test();return 0;
}

总结

求并集的两个集合必须的有序序列

目标容器开辟空间需要两个容器相加

set_union返回值既是并集中最后一个元素的位置

3.set_difference

功能描述

求两个集合的差集

函数原型

set_difference(iterator beg1,iterator end1,iterator beg2,iterator end2,iterator dest);

求两个集合的差集

注意:两个集合必须是有序序列

beg1容器1开始迭代器

end1容器1结束迭代器

beg2容器2开始迭代器

end2容器2结束迭代器

dest目标容器开始迭代器

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
​
//常用集合算法
class print
{
public:operator()(int val){cout << val << " ";}
};
​
void test()
{vector<int>v1;vector<int>v2;for(int i = 0;i < 10; i++){v1.push_back(i);v2.push_back(i + 5);}vector<int>vTarget;vTarget.resize(max(v1.size(),v2.size()));vector<int>::iterator itEnd = set_difference(v1.begin(), v1.end(), v2.begin(), v2.end(), vTarget.begin());cout << "v1和v2的差集:" << endl;for_each(vTarget.begin(), itEnd, print());cout << endl;itEnd = set_difference(v2.begin(), v2.end(), v1.begin(), v1.end(), vTarget.begin());cout << "v2和v1的差集:" << endl;for_each(vTarget.begin(), itEnd, print());cout << endl;
}
​
int main()
{test();return 0;
}

相关文章:

值得记忆的STL常用算法,分分钟摆脱容器调用的困境,以vector为例,其余容器写法类似

STL常用算法 概述&#xff1a; 算法主要是由头文件<algorithm> <functional> <numeric>组成 <algorithm>是所有STL头文件中最大的一个&#xff0c;范围涉及到比较、交换、查找、遍历操作、复制、修改等等 <nuneric>体积很小&#xff0c;只包括…...

java如何手动导jar包

今天用IDEA&#xff0c;需要导入一个Jar包&#xff0c;因为以前都是用eclipse的&#xff0c;所以对这个idea还不怎么上手&#xff0c;连打个Jar包都是谷歌了一下。 但是发现网上谷歌到的做法一般都是去File –> Project Structure中去设置&#xff0c;有没有如同eclipse一样…...

怎么防止SQL注入?

首先SQL注入是一种常见的安全漏洞&#xff0c;黑客可以通过注入恶意代码来攻击数据库和应用程序。以下是一些防止SQL注入的基本措施&#xff1a; 数据库操作层面 使用参数化查询&#xff1a;参数化查询可以防止SQL注入&#xff0c;因为参数化查询会对用户输入的数据进行过滤和…...

【千题案例】TypeScript获取两点之间的距离 | 中点 | 补点 | 向量 | 角度

我们在编写一些瞄准、绘制、擦除等功能函数时&#xff0c;经常会遇到计算两点之间的一些参数&#xff0c;那本篇文章就来讲一下两点之间的一系列参数计算。 目录 1️⃣ 两点之间的距离 ①实现原理 ②代码实现及结果 2️⃣两点之间的中点 ①实现原理 ②代码实现及结果 3…...

堆叠注入--攻防世界CTF赛题学习

在一次联系CTF赛题中才了解到堆叠注入&#xff0c;在这里简单介绍一下。 堆叠注入的原理什么的一搜一大堆&#xff0c;我就不引用百度了&#xff0c;直接进入正题。 这个是攻防世界的一道CTF赛题。 采用寻常思路来寻找sql注入漏洞。 payload:1 and 11-- 利用payload: and 12…...

STM32 ADC+定时器+DMA+FFT

本次实现的功能为单片机DAC输出一个正弦波&#xff0c;然后ADC定时采样用DMA输出&#xff0c;最后对DAC输出的波形进行FFT。单片机STM32F103ZET6内部时钟一、配置ADCADC端口为PA1&#xff0c;采用DMA输出&#xff0c;定时器3触发定时器时钟64M&#xff0c;分频后为102.4KHzADC采…...

用Node.js实现一个HTTP服务器程序(文件服务器)

http Node.js开发的目的就是为了用JavaScript编写Web服务器程序。因为JavaScript实际上已经统治了浏览器端的脚本,其优势就是有世界上数量最多的前端开发人员。如果已经掌握了JavaScript前端开发,再学习一下如何将JavaScript应用在后端开发,就是名副其实的全栈了。 HTTP协…...

Python实现人脸识别检测, 对美女主播照片进行评分排名

前言 嗨喽&#xff0c;大家好呀~这里是爱看美女的茜茜呐 素材、视频、代码、插件安装教程我都准备好了&#xff0c;直接在文末名片自取就可点击此处跳转 开发环境: Python 3.8 Pycharm 2021.2 模块使用&#xff1a; requests >>> pip install requests tqdm >…...

【数据结构与算法】什么是双向链表?并用代码手动实现一个双向链表

文章目录一、什么是双向链表二、双向链表的简单实现一、什么是双向链表 我们来看一下这个例子&#xff1a; 在一个教室里&#xff0c;所有的课桌排成一列&#xff0c;如图 相信在你们的读书生涯中&#xff0c;老师肯定有要求你们记住自己的前后桌是谁。所以该例子中&#x…...

23种设计模式

参考链接&#xff1a; 【狂神说Java】通俗易懂的23种设计模式教学&#xff08;停更&#xff09;_哔哩哔哩_bilibili 23种设计模式【狂神说】_狂神说设计模式_miss_you1213的博客-CSDN博客 1. 单例模式 参考链接&#xff1a; 【狂神说Java】单例模式-23种设计模式系列_哔哩哔哩…...

20美刀一个月的ChatGPT架构师,性价比逆天了

文章目录20美刀一个月的ChatGPT架构师&#xff0c;性价比逆天了1.角色设定2.基本描述3.解决方案4.物理网络蓝图5.系统集成接口5.1 系统集成接口设计5.1.1 前端服务器与后端服务器接口&#xff1a;5.1.2 后端服务器与去背景处理服务接口&#xff1a;5.2 系统集成接口展示6.部署环…...

海门区教育科学规划课题2020年度成果鉴定书

海门区教育科学规划课题2020年度成果鉴定书 课题编号&#xff1a;HMGZ2020007 课题名称 中学历史核心素养校本化实施的培育研究 主持人 徐彬 工作单位 南通市海门证大中学 核心组成员 &#xff08;包括主持人&#xff09; 姓名 研究任务完成情况 &#xff08;获得的主要成果、…...

大数据专业应该怎么学习

大数据学习不能停留在理论的层面上&#xff0c;大数据方向切入应是全方位的&#xff0c;基础语言的学习只是很小的一个方面&#xff0c;编程落实到最后到编程思想。学习前一定要对大数据有一个整体的认识。 大数据是数据量多吗&#xff1f;其实并不是&#xff0c;通过Hadoop其…...

学习黑客十余年,如何成为一名高级的安全工程师?

1. 前言 说实话&#xff0c;一直到现在&#xff0c;我都认为绝大多数看我这篇文章的读者最后终究会放弃&#xff0c;原因很简单&#xff0c;自学终究是一种适合于极少数人的学习方法&#xff0c;而且非常非常慢&#xff0c;在这个过程中的变数过大&#xff0c;稍有不慎&#…...

【算法】手把手学会二分查找

目录 简介 基本步骤 第一种二分 第二种二分 例题 搜索插入位置 数的范围 总结 简介 &#x1f965;二分查找&#xff0c;又叫折半查找&#xff0c;通过找到数据二段性每次都能将原来的数据筛选掉一半&#xff0c;通过这个算法我们能够将一个一个查找的 O(n) 的时间复杂…...

SVO、vinsmono、 OKVIS系统比较

几个经典视觉slam系统的比较 SVO 高翔链接&#xff1a;https://www.zhihu.com/question/39904950/answer/138644975处理的各个线程: tracking部分-frame to frame 、frame to map 金字塔的处理。这一步估计是从金字塔的顶层开始&#xff0c;把上一层的结果作为下一层估计的初…...

前端开发规范

一、开发工具 开发工具统一使用 VSCode代码格式化插件使用 Prettier代码格式校验使用 ESLintVSCode 需安装的插件有&#xff1a;ESLint、Prettier、Vetur 二、命名规范 项目命名使用小写字母&#xff0c;以连字符分隔 正确&#xff1a;fe-project 错误&#xff1a;FE PROJECT…...

不用科学上网,免费的GPT-4 IDE工具Cursor保姆级使用教程

大家好&#xff0c;我是可乐。 过去的一周&#xff0c;真是疯狂的一周。 GPT-4 震撼发布&#xff0c;拥有了多模态能力&#xff0c;不仅能和GPT3一样进行文字对话&#xff0c;还能读懂图片&#xff1b; 然后斯坦福大学发布 Alpaca 7 B&#xff0c;性能匹敌 GPT-3.5&#xff…...

【艾特淘】抖音小店物流体验分提升的6个维度,新手做店必看

抖音小店体验分&#xff0c;考核的内容包括商品、物流以及服务。大部分人会把重心放在商品评价和服务上&#xff0c;忽略了物流体验。但其实&#xff0c;抖音小店物流体验占比有20%&#xff0c;比服务分的占比还高一点。如果你的订单物流出了问题&#xff0c;很有可能会导致用户…...

数据结构——二叉树与堆

作者&#xff1a;几冬雪来 时间&#xff1a; 内容&#xff1a;二叉树与堆内容讲解 目录 前言&#xff1a; 1.完全二叉树的存储&#xff1a; 2.堆的实现&#xff1a; 1.创建文件&#xff1a; 2.定义结构体&#xff1a; 3.初始化结构体&#xff1a; 4.扩容空间与扩容…...

Three.js——learn02

Three.js——learn02Three.js——learn02通过轨道控制器查看物体OrbitControls核心代码index2.htmlindex.cssindex2.jsresult添加辅助器1.坐标轴辅助器AxesHelper核心代码完整代码2.箭头辅助器ArrowHelper核心代码完整代码3.相机视锥体辅助器CameraHelper核心代码完整代码Three…...

零基础小白如何入门网络安全?

我经常会看到这一类的问题&#xff1a; 学习XXX知识没效果&#xff1b; 学习XXX技能没方向&#xff1b; 学习XXX没办法入门&#xff1b; 给大家一个忠告&#xff0c;如果你完全没有基础的话&#xff0c;前期最好不要盲目去找资料学习&#xff0c;因为大部分人把资料收集好之…...

【前缀和】

前缀和前缀和子矩阵的和结语前缀和 输入一个长度为 n的整数序列。 接下来再输入 m 个询问&#xff0c;每个询问输入一对 l,r 对于每个询问&#xff0c;输出原序列中从第 l 个数到第 r个数的和。 输入格式第一行包含两个整数 n和 m 第二行包含 n个整数&#xff0c;表示整数…...

ChatGPT可以做WebRTC音视频质量性能优化,惊艳到我了

摘要 随着GPT-4的发布&#xff0c;AI的风越吹越旺。GPT-4可以回答问题&#xff0c;可以写作&#xff0c;甚至可以基于一张草图生成html代码搭建一个网站。即构社区的一位开发者倪同学就基于目前在研究的WebRTC QOS技术点对GPT-3.5跟GPT-4进行一场实验&#xff0c;ChatGPT会取代…...

MySQL数据库实现主从同步

安装MySQL数据库8.0.32 前言 今天来学习数据库主从同步的原理及过程&#xff0c;数据库主要是用来存储WEB数据&#xff0c;在企业当中是极为重要的&#xff0c;下面一起来看下。 1.1 数据库做主从的目的 MySQL主从复制在中小企业&#xff0c;大型企业中广泛使用&#xff0c…...

go语言gin框架学习

让框架去做http解包封包等&#xff0c;让我们的精力用在应用层开发 MVC模式 M: model&#xff0c;操作数据库gorm view 视图 处理模板页面 contoller 控制器 路由 逻辑函数 解决gin相关代码飘红的问题 记得启用gomodule go env -w GO111MODULEon然后到相应目录下执行 go mod i…...

Java奠基】Java经典案例讲解

目录 卖飞机票 找质数 开发验证码 数组元素的复制 评委打分 数字加密 数字解密 抢红包 模拟双色球 二维数组 卖飞机票 需求&#xff1a;机票价格按照淡季旺季、头等舱和经济舱收费、输入机票原价、月份和头等舱或经济舱。按照如下规则计算机票价格&#xff1a; 旺季&…...

新闻文本分类任务:使用Transformer实现

❤️觉得内容不错的话&#xff0c;欢迎点赞收藏加关注&#x1f60a;&#x1f60a;&#x1f60a;&#xff0c;后续会继续输入更多优质内容❤️&#x1f449;有问题欢迎大家加关注私戳或者评论&#xff08;包括但不限于NLP算法相关&#xff0c;linux学习相关&#xff0c;读研读博…...

如何在 Vue 中使用 防抖 和 节流

大厂面试题分享 面试题库前后端面试题库 &#xff08;面试必备&#xff09; 推荐&#xff1a;★★★★★地址&#xff1a;前端面试题库 https://mp.weixin.qq.com/s?__bizMzU5NzA0NzQyNg&mid2247485824&idx3&sn70cd26a7c0c683de64802f6cb9835003&scene21#wech…...

美国Linux服务器系统增强安全的配置

美国Linux服务器系统可能出现的安全漏洞中&#xff0c;更多是由于不当的系统配置所造成的&#xff0c;用户们可以通过一些适当的安全配置来防止问题的发生。美国Linux服务器系统上运行的服务越多&#xff0c;不当配置的概率也就越高&#xff0c;那么系统出现安全问题的可能性也…...

wordpress网址更换/杭州网站制作排名

哲学家就餐问题问题描述哲学家就餐问题(Dining philosophers problem)可以这样表述&#xff0c;假设有五位哲学家围坐在一张圆形餐桌旁&#xff0c;做以下两件事情之一&#xff1a;吃饭&#xff0c;或者思考。吃东西的时候&#xff0c;他们就停止思考&#xff0c;思考的时候也停…...

wordpress网站部署/长沙seo优化服务

封面图片由Virginia Poltrack这是我们有关“手势导航”系列的第二篇文章。如果您想跳到另一篇文章&#xff0c;可以在下面找到它们&#xff1a;Android10 手势导航开发与处理&#xff1a;边到边(I)在本系列的第1部分中&#xff0c;我们探讨了如何使应用“边缘到边缘”。不幸的是…...

网站设计公司哪家比较好/黄山网站建设

1.搜索remove.bghttps://www.remove.bg/2.翻译(网站翻译或者谷歌翻译)首页底端3.登陆账号(没注册注册)4.获取密钥4.14.24.34.44.55、查看API5.15.2跳转到GitHubhttps://github.com/brilam/remove-bg6、应用(参考GitHub)6.1安装pip install removebg6.2三种形式的文件(本地文件、…...

做网站封面要怎么做/今日广东头条新闻

DoNews 4月8日消息(记者 向密) 网易有道词典推出全新功能——AI作文批改&#xff0c;通过人工智能技术自动批改英语作文。据悉&#xff0c;有道AI作文批改基于网易有道神经网络机器翻译&#xff0c;使用Transformer架构等核心技术&#xff0c;建立复杂模型实现针对不同场景进行…...

赣县区疫情最新情况今天/seo自动推广工具

导航菜单函数wp_nav_menu()进行详细的说明。 1、wp_nav_menu()函数介绍&#xff1a; worpdress发展到3.0以后增加了一个自定义菜单函数wp_nav_menu()&#xff0c;使得wordpress能够轻松的制作自己的导航菜单。 2、如何调用导航菜单&#xff08;自定义菜单&#xff09;&#xff…...

厦门网站制作公司推荐/网站策划书模板

文章目录编程工具spyderIPYHONanaconda是集成很多工具的集成平台&#xff0c;将很多第三方的开发调试环境集成到了一起。anaconda来源于包管理和环境管理工具conda可以管理调试包编程工具spyder ipython对运行结果显示&#xff0c;文件导航实际应用不太需要&#xff0c;如下改界…...