C++ std::forward_list
std::forward_list
template < class T, class Alloc = allocator > class forward_list;
Forward list
Forward lists are sequence containers that allow constant time insert and erase operations anywhere within the sequence.
Forward lists are implemented as singly-linked lists; Singly linked lists can store each of the elements they contain in different and unrelated storage locations. The ordering is kept by the association to each element of a link to the next element in the sequence.
The main design difference between a forward_list container and a list container is that the first keeps internally only a link to the next element, while the latter keeps two links per element: one pointing to the next element and one to the preceding one, allowing efficient iteration in both directions, but consuming additional(额外的消耗) storage per element and with a slight higher time overhead inserting and removing elements. forward_list objects are thus more efficient than list objects, although they can only be iterated forwards.
Compared to other base standard sequence containers (array, vector and deque), forward_list perform generally better in inserting, extracting(提取) and moving elements in any position within the container, and therefore also in algorithms that make intensive use of these, like sorting algorithms.
The main drawback of forward_lists and lists compared to these other sequence containers is that they lack direct access to the elements by their position; For example, to access the sixth element in a forward_list one has to iterate from the beginning to that position, which takes linear time in the distance between these. They also consume(消耗) some extra memory to keep the linking information associated to each element (which may be an important factor for large lists of small-sized elements).
The forward_list class template has been designed with efficiency in mind: By design, it is as efficient as a simple handwritten C-style singly-linked list, and in fact is the only standard container to deliberately(从容的) lack(缺乏) a size member function for efficiency considerations: due to its nature as a linked list, having a size member that takes constant time would require it to keep an internal counter for its size (as list does). This would consume some extra storage and make insertion and removal operations slightly(轻微的) less efficient. To obtain the size of a forward_list object, you can use the distance algorithm with its begin and end, which is an operation that takes linear time.
Container properties
- Sequence: Elements in sequence containers are ordered in a strict linear sequence. Individual elements are accessed by their position in this sequence.
- Linked list: Each element keeps information on how to locate the next element, allowing constant time insert and erase operations after a specific element (even of entire ranges), but no direct random access.
- Allocator-aware: The container uses an allocator object to dynamically handle its storage needs.
Template parameters
- T: Type of the elements. Aliased as member type forward_list::value_type.
- Alloc: Type of the allocator object used to define the storage allocation model. By default, the allocator class template is used, which defines the simplest memory allocation model and is value-independent. Aliased as member type forward_list::allocator_type.
Member types
| member | type definition | notes |
|---|---|---|
| value_type | The first template parameter (T) | |
| allocator_type | The second template parameter (Alloc) | defaults to: allocator<value_type> |
| reference | value_type& | |
| const_reference | const value_type& | |
| pointer | allocator_traits<allocator_type>::pointer | for the default allocator: value_type* |
| const_pointer | allocator_traits<allocator_type>::const_pointer | for the default allocator: const value_type* |
| iterator | a forward iterator to value_type | convertible to const_iterator |
| const_iterator | a forward iterator to const value_type | |
| difference_type | a signed integral type, identical to: iterator_traits::difference_type | usually the same as ptrdiff_t |
| size_type | an unsigned integral type that can represent any non-negative value of difference_type | usually the same as size_t |
Member functions
- (constructor): Construct forward_list object (public member function )
- (destructor): Destroy forward_list object (public member function )
- operator=: Assign content (public member function )
Iterators
- before_begin: Return iterator to before beginning (public member function )
- begin: Return iterator to beginning (public member type )
- end: Return iterator to end (public member function )
- cbefore_begin: Return const_iterator to before beginning (public member function )
- cbegin: Return const_iterator to beginning (public member function )
- cend: Return const_iterator to end (public member function )
Capacity(容量)
- empty: Test whether array is empty (public member function )
- max_size: Return maximum size (public member function )
Element access
- front: Access first element (public member function )
Modifiers
- assign: Assign content (public member function )
- emplace_front: Construct and insert element at beginning (public member function )
- push_front: Insert element at beginning (public member function )
- pop_front: Delete first element (public member function )
- emplace_after: Construct and insert element (public member function )
- insert_after: Insert elements (public member function )
- erase_after: Erase elements (public member function )
- swap: Swap content (public member function )
- resize: Change size (public member function )
- clear: Clear content (public member function )
Operations
- splice_after Transfer elements from another forward_list (public member function )
- remove: Remove elements with specific value (public member function )
- remove_if: Remove elements fulfilling condition (public member function template )
- unique: Remove duplicate values (public member function )
- merge: Merge sorted lists (public member function )
- sort: Sort elements in container (public member function )
- reverse: Reverse the order of elements (public member function )
Observers
- get_allocator: Get allocator (public member function )
Non-member function overloads
- relational operators (forward_list): Relational operators for forward_list (function template )
- swap (forward_list): Exchanges the contents of two forward_list containers (function template )
Code Example
#include <iostream>
#include <forward_list>
#include <cmath>
using namespace std;
template<class Container>
Container by_two(const Container& x)
{
Container temp(x);
for(auto &x:temp)
x *= 2;
return temp;
}
bool single_digit(const int& value){ return (value < 10); }
class is_odd_class
{
public:
bool operator() (const int& value) {return (value%2)==1; }
} is_Odd_Object;
bool same_integral_part(double first, double second)
{ return ( int(first) == int(second) ); }
class is_near_class
{
public:
bool operator() (double first, double second)
{ return ( fabs( first - second )< 0.5 ); }
} is_near_Object;
int main(int argc, char **argv)
{
forward_list<int> flist1;
forward_list<int> flist2(3, 77);
forward_list<int> flist3(flist2.begin(),flist2.end());
forward_list<int> flist4(flist3);
/** move ctor. (fourth wasted) 把flist4给flist5, 然后清空flist4 */
forward_list<int> flist5(move(flist4));
forward_list<int> flist6 = {3,52,25,90};
cout << "\n flist1: "; for(int &x: flist1) cout << x << '\t';
cout << "\n flist2: "; for(int &x: flist2) cout << x << '\t';
cout << "\n flist3: "; for(int &x: flist3) cout << x << '\t';
cout << "\n flist4: "; for(int &x: flist4) cout << x << '\t';
cout << "\n flist5: "; for(int &x: flist5) cout << x << '\t';
cout << "\n flist6: "; for(int &x: flist6) cout << x << '\t';
forward_list<int> second1(4);
forward_list<int> second2(3,5);
second1 = second2;
second2 = by_two(second1);
cout << "\n second1:"; for(int &x:second1) cout << x;
cout << "\n second2:"; for(int &x:second2) cout << x;
forward_list<int> third = {20,30,40,50};
third.insert_after( third.before_begin(), 11 );
cout << "\n third:"; for(int &x:third) cout << x;
forward_list<int> four1 = {1,2,3};
forward_list<int> four2 = {10,20,30};
auto it = four1.begin();
four1.splice_after(four1.begin(), four2 );
/**
* first: 10 20 30 1 2 3
* four2: (empty)
* "it" still points to the 1 (now four1's 4th element)
* */
four2.splice_after( four2.begin(), four1, four1.begin(), it );
/** four1:10 1 2 3 four2: 20 30 */
four1.splice_after( four1.before_begin(), four2, four2.begin() );
/**
* four1:30 10 1 2 3 four2: 20
* notice that what is moved after the iterator
* */
four1.remove(10);
/** four1: 30 1 2 3 */
forward_list<int> five = {7,80,7,15,85,52,6};
five.remove_if(single_digit); ///< 80 15 85 52
five.remove_if(is_Odd_Object);///< 80 52
forward_list<double> six = {15.2, 73.0, 3.14, 15.85, 69.5, 73.0, 3.99,
15.2, 69.2, 18.5 };
six.sort(); ///< 3.14 3.99 15.2 15.2 15.85 18.5 69.2 69.5 73.0 73.0
six.unique(); ///< 3.14 3.99 15.2 15.85 18.5 69.2 69.5 73.0
six.unique( same_integral_part );///< 3.14 15.2 18.5 69.2 73.0
six.unique( is_near_Object ); ///< 3.14 15.2 69.2
forward_list<double> seven1 = {4.2, 2.9, 3.1};
forward_list<double> seven2 = {1.4, 7.7, 3.1};
forward_list<double> seven3 = {6.2, 3.7, 7.1};
seven1.sort(); ///< 2.9 3.1 4.2
seven2.sort(); ///< 1.4 3.1 7.7
seven1.merge(seven2); ///< 1.4 2.9 3.1 4.2 7.7
seven1.sort( greater<double>() ); ///< 7.7 4.2 3.1 2.9 1.4
seven3.sort( greater<double>() ); ///< 7.1 6.2 3.7
seven1.merge( seven3, greater<double>() );
///< 7.7 7.1 6.2 4.2 3.7 3.1 2.9 1.4
seven1.reverse();
/** 1.4 2.9 3.1 3.7 4.2 6.2 7.1 .7.7 */
return 0;
}
Reference
C++ std::forward_list的更多相关文章
- C++ std::forward_list 基本用法
#include <iostream> #include <string> #include <forward_list> using namespace std; ...
- QLinkedList和std::forward_list
forward_list forward_list是C++11版本才有的.forward_list被实现为单链表,而list是一个双向链表,所以forward_list要比list高效一些.forwa ...
- QLinkedList和std::forward_list(都是双向链表,不支持operator[],好处可能是插入和删除都比较快)
forward_list forward_list是C++11版本才有的.forward_list被实现为单链表,而list是一个双向链表,所以forward_list要比list高效一些.forwa ...
- C++ std::list 和 std::forward_list 的差别及其成员函数差异对比
主要差别: list 是双向链表,forward_list 是双向链表. 成员函数差异: 函数名 list forward_list back() has no size() has no inser ...
- std::forward_list
forward_list相比list来说空间利用率更好,与list一样不支持随机访问,若要访问除头尾节点的其他节点则时间复杂度为线性. 在forward_list成员函数里只能访问头节点以及向头节点插 ...
- forward_list详解
forward_list在头文件<forward_list>中,与list类似,区别就是list时双链表,forward_list是单链表,forward_list只支持前向迭代.在访问第 ...
- C++的标准模板库STL中实现的数据结构之链表std::list的分析与使用
摘要 本文主要借助对C++的标准模板库STL中实现的数据结构的学习和使用来加深对数据结构的理解,即联系数据结构的理论分析和详细的应用实现(STL),本文是系列总结的第二篇.主要针对线性表中的链表 ST ...
- C++ std::list 基本用法
#include <iostream> #include <string> #include <list> using namespace std; // http ...
- std::map使用结构体自定义键值
使用STL中的map时候,有时候需要使用结构题自定义键值,比如想统计点的坐标出现的次数 struct Node{ int x,y; }; ...... map<Node,int>mp; m ...
随机推荐
- jQuery UI resizable使用注意事项、实时等比例拉伸及你不知道的技巧
这篇文章总结的是我在使用resizable插件的过程中,遇到的问题及变通应用的奇思妙想. 一.resizable使用注意事项 以下是我在jsfiddle上写的测试demo:http://jsfiddl ...
- ABP框架 - OData 集成
文档目录 本节内容: 简介 安装 安装Nuget包 设置模块依赖 配置你的实体 创建控制器 示例 获取实体列表 请求 响应 获取单个实体 请求 响应 获取单个实体及导航属性 请求 响应 查询 请求 响 ...
- SQL数据库之DQL
初来乍到,我是一个Java行业的小学生,刚学半年. 今天老师讲了数据库的操作语句,在这里与大家分享一下我学到的知识吧,要是有不足的地方麻烦大家指出来,共同进步,共同提高! 1.数据库中的各种符号 %: ...
- Android注解使用之注解编译android-apt如何切换到annotationProcessor
前言: 自从EventBus 3.x发布之后其通过注解预编译的方式解决了之前通过反射机制所引起的性能效率问题,其中注解预编译所采用的的就是android-apt的方式,不过最近Apt工具的作者宣布了不 ...
- Hbase的伪分布式安装
Hbase安装模式介绍 单机模式 1> Hbase不使用HDFS,仅使用本地文件系统 2> ZooKeeper与Hbase运行在同一个JVM中 分布式模式– 伪分布式模式1> 所有进 ...
- 如何理解DT将是未来IT的转型之路?
如今的IT面临着内忧外患的挑战. 一方面,企业多多少少都建立了信息化,有些企业或集团甚至会有数几十个分公司,包含直销.代理.零售以及第三方物流等多种业态.越是复杂的业务,信息化建设越困难,比如运用大量 ...
- 分享两个BPM配置小技巧
1.小技巧 流程图修改后发布的话版本号会+1,修改次数多了之后可能会导致版本号很高,这个时候可以将流程导出,然后删除对应的流程包再导入,发布数据模型和流程图之后,版本清零 2.小技巧 有的同事入职后使 ...
- 使用git进行源代码管理
git是一款非常流行的分布式版本控制系统,使用Local Repository追踪代码的修改,通过Push和Pull操作,将代码changes提交到Remote Repository,或从Remote ...
- windows下的命令行工具babun
什么是babun babun是windows上的一个第三方shell,在这个shell上面你可以使用几乎所有linux,unix上面的命令,他几乎可以取代windows的shell.用官方的题目说就是 ...
- appium+robotframework环境搭建
appium+robotframework环境搭建步骤(Windows系统的appium自动化测试,只适用于测试安卓机:ios机需要在mac搭建appium环境后测试) 搭建步骤,共分为3部分: 一. ...