【C++】list的使用(下)

简介: 这篇博客探讨了C++ STL中`list`容器的几个关键操作,包括`splice()`、`remove()`、`remove_if()`和`unique()`。`splice()`允许高效地合并或移动`list`中的元素,无需构造或销毁。`remove()`根据值删除元素,而`remove_if()`则基于谓词移除元素。`unique()`则去除连续重复的元素,可选地使用自定义比较函数。每个操作都附带了代码示例以说明其用法。

前言

本篇博客主要内容:STL库中list用法的讲解

让我们接着上一篇博文的内容继续,进入list最后一个模块,操作list对象的接口函数。

🔥操作list对象的接口函数(opeartions)

在这里插入图片描述

==splice==

在这里插入图片描述

从x中转移元素到容器中,并将它们插入到指定的位置(功能相当于剪切)。

这实际上是将这些元素插入到容器中,并从x中移除它们,从而改变两个容器的大小。这个操作不涉及任何元素的构造或销毁。元素被转移,无论x是左值还是右值,或者value_type是否支持移动构造。

entire list (1)

void splice (iterator position, list& x);

single element (2)

void splice (iterator position, list& x, iterator i);

element range (3)

void splice (iterator position, list& x, iterator first, iterator last);

第一个版本(1)将x中的所有元素转移到容器中position指向的元素之前。
第二个版本(2)仅将x中由i指向的元素转移到容器中position指向的元素之前。
第三个版本(3)将x中迭代器范围[first,last)中的元素转移到容器中position指向的元素之前。

代码案例:

// splicing lists
#include <iostream>
#include <list>

int main ()
{
   
   
  std::list<int> mylist1, mylist2;
  std::list<int>::iterator it;

  // set some initial values:
  for (int i=1; i<=4; ++i)
     mylist1.push_back(i);      // mylist1: 1 2 3 4

  for (int i=1; i<=3; ++i)
     mylist2.push_back(i*10);   // mylist2: 10 20 30

  it = mylist1.begin();
  ++it;                         // 迭代器指向 2

  mylist1.splice (it, mylist2); // mylist1: 1 10 20 30 2 3 4
                                // mylist2 (empty)
                                // "it" 迭代器仍然指向 2 (第五个元素)

  mylist2.splice (mylist2.begin(),mylist1, it);
                                // mylist1: 1 10 20 30 3 4
                                // mylist2: 2
                                // "it"迭代器现在失效了
  it = mylist1.begin();
  std::advance(it,3);           // "it" 迭代器现在指向 30

  mylist1.splice ( mylist1.begin(), mylist1, it, mylist1.end());
                                // mylist1: 30 3 4 1 10 20

  std::cout << "mylist1 contains:";
  for (it=mylist1.begin(); it!=mylist1.end(); ++it)
    std::cout << ' ' << *it;
  std::cout << '\n';

  std::cout << "mylist2 contains:";
  for (it=mylist2.begin(); it!=mylist2.end(); ++it)
    std::cout << ' ' << *it;
  std::cout << '\n';

  return 0;
}

在这里插入图片描述

==remove==

在这里插入图片描述

void remove (const value_type& val);

该函数(list::remove)从容器中移除所有与给定值val相等的元素。这会调用这些对象的析构函数,并通过移除的元素数量来减少容器的大小。

与成员函数list::erase不同,list::erase是通过元素的位置(使用迭代器)来删除元素的,而list::remove则是通过元素的值来删除元素的。

还存在一个类似的函数list::remove_if,它允许通过除了相等性比较之外的条件来确定是否移除一个元素。

代码案例:

// remove from list
#include <iostream>
#include <list>

int main()
{
   
   
    int myints[] = {
   
    17,89,7,14 };
    std::list<int> mylist(myints, myints + 4);

    mylist.remove(89);

    std::cout << "mylist contains:";
    for (std::list<int>::iterator it = mylist.begin(); it != mylist.end(); ++it)
        std::cout << ' ' << *it;
    std::cout << '\n';

    return 0;
}

在这里插入图片描述

==remove_if==

在这里插入图片描述

template <class Predicate>
  void remove_if (Predicate pred);

该函数从容器中移除所有使得所给定谓词(Predicate)pred返回true的元素。这会调用这些对象的析构函数,并通过移除的元素数量来减少容器的大小。

对于容器中的每个元素(其中i是指向该元素的迭代器),该函数会调用pred(*i)。列表中任何使得pred(*i)返回true的元素都将从容器中移除。

pred:可以是一个函数指针函数对象,它接受一个与forward_list对象中元素类型相同的值,并返回一个布尔值。对于要从容器中移除的值,该谓词返回true;对于保留在容器中的值,返回false。这样,你可以通过提供一个这样的谓词来定制forward_list中元素的移除规则。

代码案例:

// list::remove_if
#include <iostream>
#include <list>

// 函数:
bool single_digit(const int& value) {
   
    return (value < 10); }

// 仿函数,一个类伪装成的函数:
struct is_odd {
   
   
    bool operator() (const int& value) {
   
    return (value % 2) == 1; }
};

int main()
{
   
   
    int myints[] = {
   
    15,36,7,17,20,39,4,1 };
    std::list<int> mylist(myints, myints + 8);   // 15 36 7 17 20 39 4 1

    mylist.remove_if(single_digit);           // 15 36 17 20 39

    mylist.remove_if(is_odd());               // 36 20

    std::cout << "mylist contains:";
    for (std::list<int>::iterator it = mylist.begin(); it != mylist.end(); ++it)
        std::cout << ' ' << *it;
    std::cout << '\n';

    return 0;
}

在这里插入图片描述

==unique==

在这里插入图片描述
(1)

void unique();

(2)

template <class BinaryPredicate>
  void unique (BinaryPredicate binary_pred);

没有参数的版本(1)会移除容器中每个连续相等元素组中除了第一个元素以外的所有元素

请注意,当一个元素只有当它与它前面紧挨着的元素相等时,才会从列表中移除。因此,这个函数特别适用于已排序的列表

第二个版本(2)接受一个特定的比较函数作为参数,用于确定元素的“唯一性”。实际上,可以实现任何行为(而不仅仅是相等性比较),但请注意,该函数会对所有元素对(其中i是元素迭代器,从第二个元素开始)调用binary_pred(*i,*(i-1)),如果谓词返回true,则将i从列表中移除。

被移除的元素的空间会被释放。

代码案例:

// list::unique
#include <iostream>
#include <cmath>
#include <list>

// a binary predicate implemented as a function:
bool same_integral_part(double first, double second)
{
   
   
    return (int(first) == int(second));
}

// a binary predicate implemented as a class:
struct is_near {
   
   
    bool operator() (double first, double second)
    {
   
   
        return (fabs(first - second) < 5.0);
    }
};

int main()
{
   
   
    double mydoubles[] = {
   
    12.15,  2.72, 73.0,  12.77,  3.14,
                         12.77, 73.35, 72.25, 15.3,  72.25 };
    std::list<double> mylist(mydoubles, mydoubles + 10);

    mylist.sort();             //  2.72,  3.14, 12.15, 12.77, 12.77,
    // 15.3,  72.25, 72.25, 73.0,  73.35

    mylist.unique();           //  2.72,  3.14, 12.15, 12.77
    // 15.3,  72.25, 73.0,  73.35

    mylist.unique(same_integral_part);  //  2.72,  3.14, 12.15
    // 15.3,  72.25, 73.0

    mylist.unique(is_near());           //  2.72, 12.15, 72.25

    std::cout << "mylist contains:";
    for (std::list<double>::iterator it = mylist.begin(); it != mylist.end(); ++it)
        std::cout << ' ' << *it;
    std::cout << '\n';

    return 0;
}

在这里插入图片描述

相关文章
|
1月前
|
存储 搜索推荐 C++
【C++篇】深度剖析C++ STL:玩转 list 容器,解锁高效编程的秘密武器2
【C++篇】深度剖析C++ STL:玩转 list 容器,解锁高效编程的秘密武器
48 2
【C++篇】深度剖析C++ STL:玩转 list 容器,解锁高效编程的秘密武器2
|
30天前
|
存储 算法 C++
【C++打怪之路Lv10】-- list
【C++打怪之路Lv10】-- list
20 1
|
1月前
|
存储 C++ 容器
【C++篇】深度剖析C++ STL:玩转 list 容器,解锁高效编程的秘密武器1
【C++篇】深度剖析C++ STL:玩转 list 容器,解锁高效编程的秘密武器
52 5
|
1月前
|
存储 编译器 C++
【C++篇】揭开 C++ STL list 容器的神秘面纱:从底层设计到高效应用的全景解析(附源码)
【C++篇】揭开 C++ STL list 容器的神秘面纱:从底层设计到高效应用的全景解析(附源码)
53 2
|
1月前
|
C++
【C++】C++ STL 探索:List使用与背后底层逻辑(三)
【C++】C++ STL 探索:List使用与背后底层逻辑
|
1月前
|
C++
【C++】C++ STL 探索:List使用与背后底层逻辑(二)
【C++】C++ STL 探索:List使用与背后底层逻辑
|
1月前
|
存储 编译器 C++
【C++】C++ STL 探索:List使用与背后底层逻辑(一)
【C++】C++ STL 探索:List使用与背后底层逻辑
|
1月前
|
存储 缓存 C++
C++番外篇——list与vector的比较
C++番外篇——list与vector的比较
21 0
|
1月前
|
C++
C++番外篇——list的实现
C++番外篇——list的实现
19 0
|
1月前
|
存储 C++ 容器
C++入门9——list的使用
C++入门9——list的使用
18 0