QList和QSet常用操作(查找、插入、排序、交集)

1、QList常用操作(查找、插入、排序)
(1)QList查找(前提:已排序)
cpp 复制代码
/*[查找val在列表(已排序)中的位置,返回值范围[-1,0,,size()-1]]*/
int posOf(const QList<int> &list1, int val)
{
    auto it = std::find_if(list1.begin(), list1.end(), [val](int itemVal) {
        return (itemVal == val);
    });
    return ((it != list1.end()) ? (it - list1.begin()) : -1);
}

示例:list = 5,7,11,13,17,19

Pos of 3 is [-1], 11 is [2], 19 is [5], 23 is [-1].

(2)QList插入位置(前提:已排序)
cpp 复制代码
/*[获取val在列表(已排序)中的插入位置,返回值范围为[0,,size()]]*/
int insertPosOf(const QList<int> &list1, int val)
{
    auto it = std::lower_bound(list1.begin(), list1.end(), val, [](int itemVal, int val) {
        return itemVal < val;
    });
    return (it - list1.begin());
}

示例:list = 5,7,11,13,17,19

Insert pos of 3 is [0], 11 is [2], 19 is [5], 23 is [6].

(3) QList排序
  • 升序
cpp 复制代码
QList<int> list;
......
std::sort(list.begin(), list.end(), std::less<int>{});

cpp 复制代码
std::sort(list.begin(), list.end()); //默认为less<>{}

示例:list << 37 << 23 << 83 << 71 << 91 << 53 << 11 << 61 << 19;

list ASC = 11,19,23,37,53,61,71,83,91

  • 降序
cpp 复制代码
std::sort(list.begin(), list.end(), std::greater<int>{});

示例:list << 37 << 23 << 83 << 71 << 91 << 53 << 11 << 61 << 19;

list DESC = 91,83,71,61,53,37,23,19,11

2、QSet常用操作(交集)
cpp 复制代码
QList<int> listL;
QList<int> listR;
QList<int> list1;
......
{
    QSet<int> set1 = QSet(list1.constBegin(), list1.constEnd());
    QSet<int> setL = QSet(listL.cbegin(), listL.cend());
    set1.intersect(setL);
    QList<int> list1L = QList(set1.cbegin(), set1.cend());
    std::sort(list1L.begin(), list1L.end());
}

示例:

listL << 0 << 2 << 4 << 6 << 8 << 10 << 12 << 14 << 16 << 18 << 20 << 22;

listR << 1 << 3 << 5 << 7 << 9 << 11 << 13 << 15 << 17 << 19 << 21 << 23;

list1 << 3 << 6 << 8 << 11 << 14 << 15 << 18 << 21;

list1L(list1 intersect listL) = 6, 8,14,18

list1R(list1 intersect listR) = 3,11,15,21

相关推荐
xlp666hub6 小时前
Leetcode第五题:用C++解决盛最多水的容器问题
linux·c++·leetcode
得物技术7 小时前
搜索 C++ 引擎回归能力建设:从自测到工程化准出|得物技术
c++·后端·测试
xlp666hub1 天前
Leetcode 第三题:用C++解决最长连续序列
c++·leetcode
会员源码网1 天前
构造函数抛出异常:C++对象部分初始化的陷阱与应对策略
c++
xlp666hub1 天前
Leetcode第二题:用 C++ 解决字母异位词分组
c++·leetcode
不想写代码的星星1 天前
static 关键字:从 C 到 C++,一篇文章彻底搞懂它的“七十二变”
c++
xlp666hub2 天前
Leetcode第一题:用C++解决两数之和问题
c++·leetcode
不想写代码的星星2 天前
C++继承、组合、聚合:选错了是屎山,选对了是神器
c++
不想写代码的星星3 天前
std::function 详解:用法、原理与现代 C++ 最佳实践
c++
Felix_One4 天前
Qt 串口通信避坑指南:QSerialPort 的 5 个常见问题
qt