C++ STL partion_point用法

一:功能

        用于查找元素,给定一个序列和一个查询条件,返回序列中第一个不满足查询条件的位置。

二:用法

#include <vector>
#include <algorithm>
#include <iostream>

int main() {
    std::vector<int> data{1, 2, 3, 4, 5, 6, 7, 8, 9};
    auto pp = std::partition_point(data.begin(), data.end(), 
        [](int v) { return v < 5; });
    std::cout << "*pp == " << *pp << "\n";//5
}

相关推荐

  1. new Promise

    2024-07-21 21:20:03       53 阅读
  2. qt 定时器

    2024-07-21 21:20:03       66 阅读
  3. fmt

    2024-07-21 21:20:03       65 阅读
  4. not exists

    2024-07-21 21:20:03       66 阅读
  5. 详解WebMvcConfigurer

    2024-07-21 21:20:03       44 阅读
  6. Tinyxml基本

    2024-07-21 21:20:03       70 阅读
  7. man

    2024-07-21 21:20:03       66 阅读
  8. mybatisPlus 常见

    2024-07-21 21:20:03       51 阅读
  9. v-show

    2024-07-21 21:20:03       66 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-07-21 21:20:03       172 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-07-21 21:20:03       190 阅读
  3. 在Django里面运行非项目文件

    2024-07-21 21:20:03       158 阅读
  4. Python语言-面向对象

    2024-07-21 21:20:03       171 阅读

热门阅读

  1. 【深度学习】sdxl的Lora训练技巧

    2024-07-21 21:20:03       37 阅读
  2. 理解Cookie、Session和Token

    2024-07-21 21:20:03       34 阅读
  3. 第四节shell条件测试(5)

    2024-07-21 21:20:03       38 阅读
  4. Python内存泄漏排查

    2024-07-21 21:20:03       28 阅读
  5. 【瓴岳科技】历史面试题

    2024-07-21 21:20:03       35 阅读
  6. 揭秘Odoo OWL的魔法:reactive vs useState

    2024-07-21 21:20:03       29 阅读
  7. PS像素图层简介

    2024-07-21 21:20:03       34 阅读