爱上c++的第十五天:STL-常用算法

简介: 爱上c++的第十五天:STL-常用算法

下面可能是大家刚刚学习STL算法的一些疑惑。(仅限STL中的算法)


算法是什么?


算法是解决问题的方法,一系列解决问题的步骤。


那算法有什么用?


算法能使程序代码更加的简洁,且方便编。


算法难学嘛?


一点都不难,都是模板,内部人家都已经写好了,直接套就行。


1f18d66f8cd2453ab682eafcfb944eea.png


上面这些就是我们即将要了解的一些算法了,看起来多,但是学起来要不了多久,


一,常用遍历算法


90fa6c399b6549f094a6dae861c6f41a.png


1for_each算法


68392c6ceb8a4b28af041c2e30c52728.png


#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
//普通函数
void print1(int val) {
  cout << val << " ";
}
//仿函数
class print2 {
public:
  void operator()(int val) {
    cout << val << " ";
  }
};
void test1() {
  vector<int>v;
  for (int i = 0; i < 10; i++)
  {
    v.push_back(i);
  }
  for_each(v.begin(), v.end(), print1);
  cout << endl;
  for_each(v.begin(), v.end(), print2());
}
int main() {
  test1();
  return 0;
}


2,transform算法


3a549bf0659d49b0aeb8133bd905fcb2.png


#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
class Transform {
public:
  int operator()(int val) {
    return val + 99;
  }
};
class Print {
public:
  void operator()(int val) {
    cout << val << " ";
  }
};
void test1() {
  vector<int>v;
  for (int i = 0; i < 10; i++) {
    v.push_back(i);
  }
  vector<int>Mytarget;
  //划重点,目标容器需提前开辟空间
  Mytarget.resize(v.size());
  transform(v.begin(), v.end(), Mytarget.begin(), Transform());
  for_each(Mytarget.begin(), Mytarget.end(), Print());
}
int main() {
  test1();
  return 0;
}


二,常查找算法


f7177780039349d899b6c6c4124d7aef.png


1,find算法


95e285ca5183498da2dd4e54bca9b414.png


#include<iostream>
#include<vector>
#include<algorithm>
#include<string>
using namespace std;
//查找内置数据类型
void test1() {
  vector<int>v;
  for (int i = 0; i < 10; i++) {
    v.push_back(i);
  }
  vector<int>::iterator it = find(v.begin(), v.end(),5);
  if (it != v.end()) {
    cout << "已找到: " << *it << endl;
  }
  else {
    cout << "未找到" << endl;
  }
}
//查找自定义数据类型
class person {
public:
  int m_Age;
  string m_Name;
  //重载等号运算符
  bool operator==(const person& p) {
    if (this->m_Age == p.m_Age && this->m_Name == p.m_Name) {
      return true;
    }
    else {
      return false;
    }
  }
  person(string name, int age) {
    this->m_Age = age;
    this->m_Name = name;
  }
};
void test2() {
  vector<person>v;
  person p1("111", 1);
  person p2("112", 2);
  person p3("113", 3);
  person p4("114", 4);
  person p5("115", 5);
  v.push_back(p1);
  v.push_back(p2);
  v.push_back(p3);
  v.push_back(p4);
  v.push_back(p5);
  vector<person>::iterator it = find(v.begin(), v.end(), p2);
  if (it != v.end()) {
    cout << "已找到: " << endl;
  }
  else {
    cout << "未找到" << endl;
  }
}
int main() {
  test1();
  test2();
  return 0;
}


2,find_if算法


708caab993c3417ca80feeea31cda2e0.png


3,adjacent_find算法


49a8b42a431342ee8c9654538f981c84.png


4binary_search算法


140171e82aef4278afbbcc72a5131dd9.png


5,count算法


ff9f6b5252cb45349428d469ffd7f95e.png


6,count_if算法


000e67782eaf4ff584d96a394dd8a265.png


三,常用排序算法


b16671cc2ee34753979dbcc9466da99e.png


1,sort算法


ce3321543cdd4d1da7b66874deca3c69.png


2,random_shuffleu算法


80306de8767a4e43af37b90f7f3cdb25.png


3,merge算法


63e61ed96cbd4a8a98f65955356babc3.png


最后得到的容器也是有序的,且顺序和其他两个容器相同。


4,reverse算法


6440c2c776614570ac538607ee84359b.png


四,常用拷贝和替换算法


03e63b16f43d442b9cb10a634a24f448.png


1,copy算法


f5216119e32b4802a3027c810935de70.png


2,replace算法


664a7b94c3ca42c1971981ce6261d952.png


3,replace_if算法


65b46f8317d2408999c38e3df38d077a.png


4,swap算法


86542179a433444e8c1c6ee953c5498c.png


容器一定要是同种类型的。


四,常用算术生成算法


85769973fd1041c285ceab055b67ec11.png


1,accumulate算法


f7fa55b072e64f1c969866b652d8ee65.png


2,fill算法


4fd000a979fc47da9621b6a7521a2050.png


五,常用集合算法


67602722277f452ebdd957a3476eee78.png


1,set_intersection算法


5ed5ccedea9142d1a9c08d379e7daf35.png


2,set_union算法


51364c94ac4d4692a7e2ce0f0f717f53.png


3,set_difference算法


d19b66e10e7d4a8eaeaf7e33cf2e062f.png


注意:如果遇到对一个新容器进行操作,(未经初始化的容器),需要用resize开辟空间,不然程序会崩溃。

上面的图片(除了第一张)都是来源于黑马程序员。

目录
相关文章
|
1月前
|
存储 算法 C++
C++ STL 初探:打开标准模板库的大门
C++ STL 初探:打开标准模板库的大门
101 10
|
1月前
|
存储 搜索推荐 C++
【C++篇】深度剖析C++ STL:玩转 list 容器,解锁高效编程的秘密武器2
【C++篇】深度剖析C++ STL:玩转 list 容器,解锁高效编程的秘密武器
52 2
【C++篇】深度剖析C++ STL:玩转 list 容器,解锁高效编程的秘密武器2
|
1月前
|
存储 程序员 C++
C++常用基础知识—STL库(2)
C++常用基础知识—STL库(2)
71 5
|
1月前
|
存储 自然语言处理 程序员
C++常用基础知识—STL库(1)
C++常用基础知识—STL库(1)
58 1
|
1月前
|
算法 安全 Linux
【C++STL简介】——我与C++的不解之缘(八)
【C++STL简介】——我与C++的不解之缘(八)
|
1月前
|
存储 编译器 C++
【C++篇】揭开 C++ STL list 容器的神秘面纱:从底层设计到高效应用的全景解析(附源码)
【C++篇】揭开 C++ STL list 容器的神秘面纱:从底层设计到高效应用的全景解析(附源码)
57 2
|
1月前
|
算法 数据处理 C++
c++ STL划分算法;partition()、partition_copy()、stable_partition()、partition_point()详解
这些算法是C++ STL中处理和组织数据的强大工具,能够高效地实现复杂的数据处理逻辑。理解它们的差异和应用场景,将有助于编写更加高效和清晰的C++代码。
25 0
|
1月前
|
存储 算法 程序员
迪杰斯特拉(Dijkstra)算法(C/C++)
迪杰斯特拉(Dijkstra)算法(C/C++)
|
1月前
|
人工智能 算法 Java
【搜索算法】数字游戏(C/C++)
【搜索算法】数字游戏(C/C++)
|
1月前
|
算法 安全 数据安全/隐私保护
基于game-based算法的动态频谱访问matlab仿真
本算法展示了在认知无线电网络中,通过游戏理论优化动态频谱访问,提高频谱利用率和物理层安全性。程序运行效果包括负载因子、传输功率、信噪比对用户效用和保密率的影响分析。软件版本:Matlab 2022a。完整代码包含详细中文注释和操作视频。
下一篇
无影云桌面