list的介绍及使用
list的介绍
list的文档介绍
- list是可以在常数范围内在任意位置进行插入和删除的序列式容器,并且该容器可以前后双向迭代。
- list的底层是双向链表结构,双向链表中每个元素存储在互不相关的独立节点中,在节点中通过指针指向
其前一个元素和后一个元素。 - list与forward_list非常相似:最主要的不同在于forward_list是单链表,只能朝前迭代,已让其更简单高
效。 - 与其他的序列式容器相比(array,vector,deque),list通常在任意位置进行插入、移除元素的执行效率
更好。 - 与其他序列式容器相比,list和forward_list最大的缺陷是不支持任意位置的随机访问,比如:要访问list
的第6个元素,必须从已知的位置(比如头部或者尾部)迭代到该位置,在这段位置上迭代需要线性的时间 开销;list还需要一些额外的空间,以保存每个节点的相关联信息(对于存储类型较小元素的大list来说这 可能是一个重要的因素)
list的使用
list中的接口比较多,此处类似,只需要掌握如何正确的使用,然后再去深入研究背后的原理,已达到可扩展 的能力。以下为list中一些常见的重要接口。
list的构造
构造函数( (constructor)) | 接口说明 |
---|
list() | 构造空的list | list (size_type n, const value_type& val = value_type()) | 构造的list中包含n个值为val的元素 | list (const list& x) | 拷贝构造函数 | list (InputIterator first, InputIterator last) | 用[first, last)区间中的元素构造list |
#include <iostream>
#include <list>
int main ()
{
std::list<int> l1;
std::list<int> l2 (4,100);
std::list<int> l3 (l2.begin(), l2.end());
std::list<int> l4 (l3);
int array[] = {16,2,77,29};
std::list<int> l5 (array, array + sizeof(array) / sizeof(int) );
for(std::list<int>::iterator it = l5.begin(); it != l5.end(); it++)
std::cout << *it << " ";
std::cout<<endl;
for(auto& e : l5)
std::cout<< e << " ";
std::cout<<endl;
return 0;
}
list iterator的使用
此处,大家可暂时将迭代器理解成一个指针,该指针指向list中的某个节点
函数声明 | 接口说明 |
---|
begin + end | 返回第一个元素的迭代器+返回最后一个元素下一个位置的迭代器 | rbegin + rend | 返回第一个元素的reverse_iterator,即end位置,返回最后一个元素下一个位置的 reverse_iterator,即begin位置 |
【注意】
- begin与end为正向迭代器,对迭代器执行++操作,迭代器向后移动
- rbegin(end)与rend(begin)为反向迭代器,对迭代器执行++操作,迭代器向前移动
#include <iostream>
using namespace std;
#include <list>
void print_list(const list<int>& l)
{
for (list<int>::const_iterator it = l.begin(); it != l.end(); ++it)
{
cout << *it << " ";
}
cout << endl;
}
int main()
{
int array[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 };
list<int> l(array, array + sizeof(array) / sizeof(array[0]));
for (list<int>::iterator it = l.begin(); it != l.end(); ++it)
cout << *it << " ";
cout << endl;
for (list<int>::reverse_iterator it = l.rbegin(); it != l.rend(); ++it)
cout << *it << " ";
cout << endl;
return 0;
}
list capacity
函数声明 | 接口说明 |
---|
empty | 检测list是否为空,是返回true,否则返回false | size | 返回list中有效节点的个数 |
list element access
函数声明 | 接口说明 |
---|
front | 返回list的第一个节点中值的引用 | back | 返回list的最后一个节点中值的引用 |
list sort
算法库中提供了一个sort接口,通过传迭代器实现,但sort不能对list进行排序,因为sort的底层是快排,要求排序的区间是能够被随机访问的(比如vector可以通过[]随机访问)
list本身提供了一个sort接口,但不建议使用。
list modifiers
函数声明 | 接口说明 |
---|
push_front | 在list首元素前插入值为val的元素 | pop_front | 删除list中第一个元素 | push_back | 在list尾部插入值为val的元素 | pop_back | 删除list中最后一个元素 | insert | 在list position 位置中插入值为val的元素 | erase | 删除list position位置的元素 | swap | 交换两个list中的元素 | clear | 清空list中的有效元素 |
#include <list>
void PrintList(list<int>& l)
{
for (auto& e : l)
cout << e << " ";
cout << endl;
}
====
void TestList1()
{
int array[] = { 1, 2, 3 };
list<int> L(array, array+sizeof(array)/sizeof(array[0]));
L.push_back(4);
L.push_front(0);
PrintList(L);
L.pop_back();
L.pop_front();
PrintList(L);
}
====
void TestList3()
{
int array1[] = { 1, 2, 3 };
list<int> L(array1, array1+sizeof(array1)/sizeof(array1[0]));
auto pos = ++L.begin();
cout << *pos << endl;
L.insert(pos, 4);
PrintList(L);
L.insert(pos, 5, 5);
PrintList(L);
vector<int> v{ 7, 8, 9 };
L.insert(pos, v.begin(), v.end());
PrintList(L);
L.erase(pos);
PrintList(L);
L.erase(L.begin(), L.end());
PrintList(L);
}
void TestList4()
{
int array1[] = { 1, 2, 3 };
list<int> l1(array1, array1+sizeof(array1)/sizeof(array1[0]));
PrintList(l1);
l1.swap(l2);
PrintList(l1);
PrintList(l2);
l2.clear();
cout<<l2.size()<<endl;
}
list的迭代器失效
前面说过,此处大家可将迭代器暂时理解成类似于指针,迭代器失效即迭代器所指向的节点的无效,即该节 点被删除了。因为list的底层结构为带头结点的双向循环链表,因此在list中进行插入(insert)时是不会导致list的迭代 器失效的,只有在删除(erase)时才会失效,并且失效的只是指向被删除节点的迭代器,其他迭代器不会受到影响
void TestListIterator1()
{
int array[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 };
list<int> l(array, array+sizeof(array)/sizeof(array[0]));
auto it = l.begin();
while (it != l.end())
{
l.erase(it);
++it;
}
}
void TestListIterator()
{
int array[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 };
list<int> l(array, array+sizeof(array)/sizeof(array[0]));
auto it = l.begin();
while (it != l.end())
{
l.erase(it++);
}
}
list的模拟实现
模拟实现list
要模拟实现list,必须要熟悉list的底层结构以及其接口的含义,通过上面的学习,这些内容已基本掌握,现 在我们来模拟实现list
#pragma once
#include<iostream>
#include<assert.h>
using namespace std;
namespace ysj
{
class Date {
public:
int _year = 0;
int _month = 1;
int _day = 1;
public:
Date()
{
;
}
};
template<class T>
struct _listnode {
_listnode(T val = T())
:_val(val)
, _next(nullptr)
, _prev(nullptr)
{}
T _val;
_listnode<T>* _next;
_listnode<T>* _prev;
};
template <class T, class Ref, class Ptr>
struct _list_iterator {
typedef _listnode<T> node;
typedef _list_iterator<T, Ref, Ptr> self;
node* _pnode;
_list_iterator(node*pnode = nullptr)
:_pnode(pnode)
{}
Ref operator*()
{
return _pnode->_val;
}
Ptr operator->()
{
return &_pnode->_val;
}
bool operator!=(const self& s)const
{
return _pnode != s._pnode;
}
bool operator==(const self& s)const
{
return !(_pnode != s._pnode);
}
self& operator++()
{
_pnode = _pnode->_next;
return *this;
}
self& operator++(int)
{
self tmp(*this);
_pnode = _pnode->_next;
return tmp;
}
self& operator--()
{
_pnode = _pnode->_prev;
return *this;
}
self& operator--(int)
{
self tmp(*this);
_pnode = _pnode->_prev;
return tmp;
}
};
template <class T>
class list {
public:
typedef _listnode<T> node;
typedef _list_iterator<T, T&, T*> iterator;
typedef _list_iterator<T, const T&, const T*> const_iterator;
private:
node* _head;
public:
list(T val = T())
{
_head = new node(val);
_head->_next = _head;
_head->_prev = _head;
}
list(int num, T val)
{
_head = new node;
_head->_next = _head;
_head->_prev = _head;
while (num--)
{
push_back(val);
}
}
template <class Iterator>
list(Iterator left, Iterator right)
{
_head = new node;
_head->_prev = _head;
_head->_next = _head;
while (left != right)
{
push_back(*left);
++left;
}
}
list(const list<T>& lt)
{
_head = new node;
_head->_next = _head;
_head->_prev = _head;
for (const auto& e : lt)
{
push_back(e);
}
}
const list<T>& operator=(list<T> lt)
{
if (this != <)
swap(lt._head, _head);
return *this;
}
iterator begin()
{
return iterator(_head->_next);
}
iterator end()
{
return iterator(_head);
}
const_iterator begin()const
{
return const_iterator(_head->_next);
}
const_iterator end()const
{
return const_iterator(_head);
}
bool empty()
{
return begin() == end();
}
size_t size()const
{
size_t count = 0;
list<T>::const_iterator it = begin();
while (it != end())
{
++count;
++it;
}
return count;
}
void insert( iterator pos, const T& val)
{
node* newnode = new node(val);
node* prev = pos._pnode->_prev;
node* cur = pos._pnode;
newnode->_prev = prev;
prev->_next = newnode;
newnode->_next = cur;
cur->_prev = newnode;
}
void push_front(const T& val)
{
insert( begin(), val);
}
void push_back(const T& val)
{
insert( end(), val);
}
iterator erase(iterator pos)
{
assert(!empty());
node* prev = pos._pnode->_prev;
node* next = pos._pnode->_next;
prev->_next = next;
next->_prev = prev;
return next;
}
void pop_front()
{
assert(_head->_next != _head);
erase(begin());
}
void pop_back()
{
assert(_head->_next != _head);
erase(--end());
}
void clear()
{
list<T>::iterator it = begin();
while (it != end())
{
it = erase(it);
}
}
~list()
{
clear();
delete _head;
_head = nullptr;
}
};
关于->的重载
Ptr operator->()
{
return &_pnode->_val;
}
void TestList3()
{
ysj::list<Date> l1;
l1.push_back(Date());
l1.push_back(Date());
l1.push_back(Date());
l1.push_back(Date());
l1.push_back(Date());
auto it = l1.begin();
while (it != l1.end())
{
cout << ((*it)._year) << ((*it)._month) << ((*it)._day) << endl;
it++;
}
cout << endl;
it = l1.begin();
while (it != l1.end())
{
cout << (it->_year) << (it->_month) << (it->_day) << endl;
it++;
}
cout << endl;
}
获取_val的成员变量:it-> _year,本来应该是it->-> _year
it->返回的是_val的地址,应该对该地址再使用一次->,才能够访问到 _val的成员,但编译器在这里做了优化,为了代码的可读性,只需要一个->就可以访问到 _val的成员。
对模拟的list进行测试
template<class T>
void PrintList(const ysj::list<T>& l)
{
auto it = l.begin();
while (it != l.end())
{
cout << *it << " ";
++it;
}
cout << endl;
}
void TestList1()
{
ysj::list<int> l1;
ysj::list<int> l2(10, 5);
PrintList(l2);
int array[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 };
ysj::list<int> l3(array, array + sizeof(array) / sizeof(array[0]));
PrintList(l3);
ysj::list<int> l4(l3);
PrintList(l4);
l1 = l4;
PrintList(l1);
}
void TestList2()
{
ysj::list<int> l;
l.push_back(1);
l.push_back(2);
l.push_back(3);
PrintList(l);
l.pop_back();
l.pop_back();
PrintList(l);
l.pop_back();
cout << l.size() << endl;
l.push_front(1);
l.push_front(2);
l.push_front(3);
PrintList(l);
l.pop_front();
l.pop_front();
PrintList(l);
l.pop_front();
cout << l.size() << endl;
}
void TestList3()
{
int array[] = { 1, 2, 3, 4, 5 };
ysj::list<int> l(array, array + sizeof(array) / sizeof(array[0]));
auto pos = l.begin();
l.insert(l.begin(), 0);
PrintList(l);
++pos;
l.insert(pos, 2);
PrintList(l);
l.erase(l.begin());
l.erase(pos);
PrintList(l);
cout << *pos << endl;
auto it = l.begin();
while (it != l.end())
{
it = l.erase(it);
}
cout << l.size() << endl;
}
|