定义了一个类模板list_node
,表示链表节点。
成员变量包括指向下一个节点的指针_next
,一个指向上一个节点的指针_prev
和一个存储值的变量_val
在构造函数中,可以通过传入参数来初始化节点的值,默认值为类型T
的默认构造值
定义了一个节点类,用来创建一个双链表,可以存储任意类型的值。每个节点都包含上一个节点和下一个节点的指针
template
struct list_node
{
list_node* _next;
list_node* _prev;
T _val;
list_node(const T& val = T())
:_next(nullptr)
, _prev(nullptr)
, _val(val)
{}
};
定义了一个双线链表的迭代器类__list_iterator
,这个迭代器有三个模板参数,分别是类型T
,引用类型Ref
和指针类型Ptr
这段代码定义了一个双向链表的迭代器类__list_iterator
。这个迭代器有三个模板参数,分别是类型T
、引用类型Ref
和指针类型Ptr
。
__list_iterator
类有一个私有成员变量_node
,它是指向Node
类型的指针。
类的构造函数__list_iterator(Node* node)
接收一个Node
类型的指针作为参数,并将其赋值给私有成员变量_node
。
template
struct __list_iterator
{
typedef list_node Node;
typedef __list_iterator self;
Node* _node;
__list_iterator(Node* node)
:_node(node)
{}
Ref operator*()
{
return _node->_val;
}
Ptr operator->()
{
return &_node->_val;
}
self& operator++()
{
_node = _node->_next;
return *this;
}
self operator++(int)
{
self tmp(*this);
_node = _node->_next;
return tmp;
}
self& operator--()
{
_node = _node->_prev;
return *this;
}
self operator--(int)
{
self tmp(*this);
_node = _node->_prev;
return tmp;
}
bool operator!=(const self& it) const
{
return _node != it._node;
}
bool operator==(const self& it) const
{
return _node == it._node;
}
};
typedef list_node
语句的意思是给list_node
类型取一个别名叫做Node
。通过这种方式,可以使用Node
来代替list_node
,使代码更加简洁和易读。
list_node
是一个模板类,表示链表中的节点。typedef
语句将list_node
类型命名为Node
,可以通过Node
来声明和使用节点对象,比如Node*
表示指向节点的指针,Node val
表示一个节点对象等。
注意,这里的T
是一个模板参数,可以根据实际需求来指定具体的类型。例如,如果定义了list_node
,则Node
表示一个整数类型的链表节点。
typedef list_node Node;
typedef __list_iterator
语句的意思是给__list_iterator
类型取一个别名叫做self
。通过这种方式,可以使用self
来代替__list_iterator
,使代码更加简洁和易读。
__list_iterator
是一个迭代器模板类,表示链表的迭代器。typedef
语句将__list_iterator
类型命名为self
,可以通过self
来声明和使用迭代器对象,比如self it
表示一个迭代器对象,self*
表示指向迭代器的指针等。
注意,这里的T
、Ref
和Ptr
是模板参数,可以根据实际需求来指定具体的类型。例如,如果定义了__list_iterator
,则self
表示一个整数类型的链表迭代器。
typedef __list_iterator self;
__list_iterator(Node* node) : _node(node) {}
是一个构造函数的定义。构造函数用于初始化类的对象。
这个构造函数接受一个指向Node
类型的指针node
作为参数。在构造函数的执行过程中,将传入的node
赋值给类的成员变量_node
,用于初始化迭代器对象的内部状态。
这里假设__list_iterator
是一个链表迭代器类,存储指向链表节点的指针。构造函数的作用是根据传入的节点指针初始化迭代器对象。
__list_iterator(Node* node)
:_node(node)
{}
operator*()
重载了解引用运算符,返回当前节点的值,以引用类型Ref
返回。
Ref operator*()
{
return _node->_val;
}
operator->()
重载了箭头运算符,返回当前节点的指针,以指针类型Ptr
返回。
Ptr operator->()
{
return &_node->_val;
}
operator++()
重载了前置递增运算符,使得迭代器指向下一个节点,并返回自身的引用。
self& operator++()
{
_node = _node->_next;
return *this;
}
operator++(int)
重载了后置递增运算符,使得迭代器指向下一个节点,并返回递增前的迭代器自身
self operator++(int)
{
self tmp(*this);
_node = _node->_next;
return tmp;
}
operator--()
重载了前置递减运算符,使得迭代器指向上一个节点,并返回自身的引用。
self& operator--()
{
_node = _node->_prev;
return *this;
}
operator--(int)
重载了后置递减运算符,使得迭代器指向上一个节点,并返回递减前的迭代器自身。
self operator--(int)
{
self tmp(*this);
_node = _node->_prev;
return tmp;
}
operator!=()
重载了不等于运算符,判断两个迭代器是否不相等。
bool operator!=(const self& it) const
{
return _node != it._node;
}
operator==()
重载了等于运算符,判断两个迭代器是否相等
bool operator==(const self& it) const
{
return _node == it._node;
}
public:
typedef __list_iterator iterator;
typedef __list_iterator const_iterator;
iterator begin()
{
//return _head->_next;
return iterator(_head->_next);
}
iterator end()
{
return _head;
//return iterator(_head);
}
const_iterator begin() const
{
//return _head->_next;
return const_iterator(_head->_next);
}
const_iterator end() const
{
return _head;
//return const_iterator(_head);
}
void empty_init()
{
_head = new Node;
_head->_prev = _head;
_head->_next = _head;
_size = 0;
}
list()
{
empty_init();
}
list(const list& lt)
//list(const list& lt)
{
empty_init();
for (auto& e : lt)
{
push_back(e);
}
}
void swap(list& lt)
{
std::swap(_head, lt._head);
std::swap(_size, lt._size);
}
list& operator=(list lt)
//list& operator=(list lt)
{
swap(lt);
return *this;
}
~list()
{
clear();
delete _head;
_head = nullptr;
}
void clear()
{
iterator it = begin();
while (it != end())
{
it = erase(it);
}
_size = 0;
}
void push_back(const T& x)
{
insert(end(), x);
}
void push_front(const T& x)
{
insert(begin(), x);
}
void pop_back()
{
erase(--end());
}
void pop_front()
{
erase(begin());
}
// pos位置之前插入
iterator insert(iterator pos, const T& x)
{
Node* cur = pos._node;
Node* prev = cur->_prev;
Node* newnode = new Node(x);
prev->_next = newnode;
newnode->_next = cur;
cur->_prev = newnode;
newnode->_prev = prev;
++_size;
return newnode;
}
iterator erase(iterator pos)
{
assert(pos != end());
Node* cur = pos._node;
Node* prev = cur->_prev;
Node* next = cur->_next;
prev->_next = next;
next->_prev = prev;
delete cur;
--_size;
return next;
}
size_t size()
{
return _size;
}
private:
Node* _head;
size_t _size;
};
这段代码是使用typedef
关键字定义了一个名为iterator
的类型别名。
__list_iterator
是一个自定义的模板类,用于表示链表的迭代器。它具有三个模板参数,分别是T
、T&
和T*
。
T
表示链表中节点存储的数据类型。T&
表示迭代器所引用的数据类型,即通过迭代器可以对节点中的数据进行修改。T*
表示指向节点的指针类型。通过将__list_iterator
模板实例化并传入上述模板参数,就可以得到具体类型的迭代器类。而typedef
关键字则用来给这个具体类型的迭代器类起一个别名,即iterator
。
通过这个别名,我们可以方便地使用iterator
作为具体类型的迭代器对象的类型,而不需要每次都使用完整的模板参数列表来声明迭代器对象。
typedef __list_iterator iterator;
typedef __list_iterator const_iterator;
begin()
:返回一个指向链表第一个元素的迭代器(支持可读可写)
iterator begin()
{
return iterator(_head->_next);
}
end()
:返回一个指向链表尾部的迭代器。(支持可读可写)
iterator end()
{
return _head;
}
begin()
:返回一个指向链表第一个元素的迭代器(支持可读)
const_iterator begin() const
{
return const_iterator(_head->_next);
}
end()
:返回一个指向链表尾部的迭代器。(支持可读可写)
const_iterator end() const
{
return _head;
}
empty_init()
:初始化空链表的头节点,并设置头节点的前驱和后继指针。
void empty_init()
{
_head = new Node;
_head->_prev = _head;
_head->_next = _head;
_size = 0;
}
list()
:默认构造函数,调用empty_init()
初始化空链表。
list()
{
empty_init();
}
list(const list
:复制构造函数,通过遍历参数lt
中的元素,逐个调用push_back(e)
插入到新链表中。
list(const list& lt)
{
empty_init();
for (auto& e : lt)
{
push_back(e);
}
}
swap(list
:交换当前链表和参数lt
的内容。
void swap(list& lt)
{
std::swap(_head, lt._head);
std::swap(_size, lt._size);
}
list
:赋值运算符重载,通过调用swap(lt)
将参数lt
和当前链表内容交换。
list& operator=(list lt)
{
swap(lt);
return *this;
}
~list()
:析构函数,调用clear()
清空链表并释放头节点的内存。
~list()
{
clear();
delete _head;
_head = nullptr;
}
push_back(const T& x)
:在链表末尾插入元素x
。
void push_back(const T& x)
{
insert(end(), x);
}
push_front(const T& x)
:在链表头部插入元素x
。
void push_front(const T& x)
{
insert(begin(), x);
}
pop_back()
:删除链表末尾的元素。
void pop_back()
{
erase(--end());
}
pop_front()
:删除链表头部的元素。
void push_front(const T& x)
{
insert(begin(), x);
}
insert(iterator pos, const T& x)
:在迭代器pos
指向的位置之前插入元素x
。
iterator erase(iterator pos)
{
assert(pos != end());
Node* cur = pos._node;
Node* prev = cur->_prev;
Node* next = cur->_next;
prev->_next = next;
next->_prev = prev;
delete cur;
--_size;
return next;
}
erase(iterator pos)
:删除迭代器pos
指向的元素。
iterator erase(iterator pos)
{
assert(pos != end());
Node* cur = pos._node;
Node* prev = cur->_prev;
Node* next = cur->_next;
prev->_next = next;
next->_prev = prev;
delete cur;
--_size;
return next;
}
size()
:返回链表的大小。
size_t size()
{
return _size;
}
#pragma once
#include
#include
#include
#include
#include
using namespace std;
namespace bit
{
template
struct list_node
{
list_node* _next;
list_node* _prev;
T _val;
list_node(const T& val = T())
:_next(nullptr)
, _prev(nullptr)
, _val(val)
{}
};
template
struct __list_iterator
{
typedef list_node Node;
typedef __list_iterator self;
Node* _node;
__list_iterator(Node* node)
:_node(node)
{}
Ref operator*()
{
return _node->_val;
}
Ptr operator->()
{
return &_node->_val;
}
self& operator++()
{
_node = _node->_next;
return *this;
}
self operator++(int)
{
self tmp(*this);
_node = _node->_next;
return tmp;
}
self& operator--()
{
_node = _node->_prev;
return *this;
}
self operator--(int)
{
self tmp(*this);
_node = _node->_prev;
return tmp;
}
bool operator!=(const self& it) const
{
return _node != it._node;
}
bool operator==(const self& it) const
{
return _node == it._node;
}
};
template
class list
{
typedef list_node Node;
public:
typedef __list_iterator iterator;
typedef __list_iterator const_iterator;
// 这么设计太冗余了,看看库里面如何设计的
//typedef __list_const_iterator const_iterator;
// 这样设计const迭代器是不行的,因为const迭代器期望指向内容不能修改
// 这样设计是迭代器本身不能修改
// typedef const __list_iterator const_iterator;
// const T* ptr1;
// T* const ptr2;
// 如何设计const迭代器?
iterator begin()
{
//return _head->_next;
return iterator(_head->_next);
}
iterator end()
{
return _head;
//return iterator(_head);
}
const_iterator begin() const
{
//return _head->_next;
return const_iterator(_head->_next);
}
const_iterator end() const
{
return _head;
//return const_iterator(_head);
}
void empty_init()
{
_head = new Node;
_head->_prev = _head;
_head->_next = _head;
_size = 0;
}
list()
{
empty_init();
}
// lt2(lt1)
list(const list& lt)
//list(const list& lt)
{
empty_init();
for (auto& e : lt)
{
push_back(e);
}
}
void swap(list& lt)
{
std::swap(_head, lt._head);
std::swap(_size, lt._size);
}
list& operator=(list lt)
//list& operator=(list lt)
{
swap(lt);
return *this;
}
~list()
{
clear();
delete _head;
_head = nullptr;
}
void clear()
{
iterator it = begin();
while (it != end())
{
it = erase(it);
}
_size = 0;
}
void push_back(const T& x)
{
insert(end(), x);
}
void push_front(const T& x)
{
insert(begin(), x);
}
void pop_back()
{
erase(--end());
}
void pop_front()
{
erase(begin());
}
// pos位置之前插入
iterator insert(iterator pos, const T& x)
{
Node* cur = pos._node;
Node* prev = cur->_prev;
Node* newnode = new Node(x);
prev->_next = newnode;
newnode->_next = cur;
cur->_prev = newnode;
newnode->_prev = prev;
++_size;
return newnode;
}
iterator erase(iterator pos)
{
assert(pos != end());
Node* cur = pos._node;
Node* prev = cur->_prev;
Node* next = cur->_next;
prev->_next = next;
next->_prev = prev;
delete cur;
--_size;
return next;
}
size_t size()
{
return _size;
}
private:
Node* _head;
size_t _size;
};
void Print(const list& lt)
{
list::const_iterator it = lt.begin();
while (it != lt.end())
{
cout << *it << " ";
++it;
}
cout << endl;
}
void test_list1()
{
list lt;
lt.push_back(1);
lt.push_back(2);
lt.push_back(3);
lt.push_back(4);
list::iterator it = lt.begin();
while (it != lt.end())
{
(*it) += 1;
cout << *it << " ";
++it;
}
cout << endl;
for (auto e : lt)
{
cout << e << " ";
}
cout << endl;
Print(lt);
}
struct A
{
A(int a1 = 0, int a2 = 0)
:_a1(a1)
, _a2(a2)
{}
int _a1;
int _a2;
};
void test_list2()
{
list lt;
lt.push_back(A(1, 1));
lt.push_back(A(2, 2));
lt.push_back(A(3, 3));
lt.push_back(A(4, 4));
list::iterator it = lt.begin();
while (it != lt.end())
{
cout << it->_a1 << " " << it->_a2 << endl;
++it;
}
cout << endl;
}
void test_list3()
{
list lt;
lt.push_back(1);
lt.push_back(2);
lt.push_back(3);
lt.push_back(4);
lt.push_front(5);
lt.push_front(6);
lt.push_front(7);
lt.push_front(8);
for (auto e : lt)
{
cout << e << " ";
}
cout << endl;
lt.pop_front();
lt.pop_back();
for (auto e : lt)
{
cout << e << " ";
}
cout << endl;
lt.clear();
lt.push_back(10);
lt.push_back(20);
lt.push_back(30);
lt.push_back(40);
for (auto e : lt)
{
cout << e << " ";
}
cout << endl;
cout << lt.size() << endl;
}
void test_list4()
{
list lt;
lt.push_back(1);
lt.push_back(2);
lt.push_back(3);
lt.push_back(4);
for (auto e : lt)
{
cout << e << " ";
}
cout << endl;
list lt1(lt);
for (auto e : lt1)
{
cout << e << " ";
}
cout << endl;
list lt2;
lt2.push_back(10);
lt2.push_back(20);
lt2.push_back(30);
lt2.push_back(40);
for (auto e : lt2)
{
cout << e << " ";
}
cout << endl;
lt1 = lt2;
for (auto e : lt1)
{
cout << e << " ";
}
cout << endl;
}
}
int main()
{
bit::test_list4();
return 0;
}