• list(链表)


    功能

    在这里插入图片描述
    这里没有“[]"的实现;原因:实现较麻烦;这里使用迭代器来实现;

    迭代器的分类

    单向迭代器;双向迭代器;随机迭代器;
    在这里插入图片描述
    在这里插入图片描述

    sort函数(排序)

    sort函数在算法库中存在;为什么还要单独写一个呢?
    算法库:
    sort函数:
    在这里插入图片描述
    在这里的迭代器使用的是随机迭代器;而list不能使用随机迭代器,只能使用双向迭代器;
    所以list库函数独自写了一个sort函数:
    在这里插入图片描述
    该函数默认为升序;添加一个greater变量以后就是降序;
    在这里插入图片描述
    sort函数尽量减少使用;时间消耗较大;
    在这里插入图片描述

    解决方法:
    将list的数据传给vector;在用vector的sort函数来排序;使用迭代器输入法;
    在这里插入图片描述
    10万个数据一下差距不大;

    merage(归并)

    将两个链表合并到一起;
    注意:这里的归并两个链表必须进行顺序排列;
    再进行归并;
    在这里插入图片描述

    unique(去重)

    这一函数可以将数组中的连续的数字保留第一个将剩下多余的数字删除;
    **注意:**该数列去重之前必须将数组排序;

    remove

    该函数将会删除()内的数组相同的值;

    splice(转移)

    这里的转移是将原来的数据的连带节点一起转移到目标位置;
    在这里插入图片描述

    const迭代器:

    在这里插入图片描述

    list 的->的实现

    在这里插入图片描述

    函数内出现模板类去调用内嵌类型或静态成员变量;

    在这里插入图片描述
    这里的添加typename是为了是为了让编译器在第一次检查每个函数时,勉强通过;再在示例化(函数被调用),再进行编译;

    该函数可以使用传参数来进行实例化;

    将容器定义为模板,让编译器来识别是哪个容器;来进行函数操作

    在这里插入图片描述

    源码

    #include
    
    namespace bit
    {
    	template<class T>
    	struct list_node
    	{
    		T _data;
    		list_node<T>* _next;
    		list_node<T>* _prev;
    
    		list_node(const T& x = T())
    			:_data(x)
    			,_next(nullptr)
    			,_prev(nullptr)
    		{}
    	};
    
    	template<class T>
    	struct __list_iterator
    	{
    		typedef list_node<T> Node;
    		typedef __list_iterator<T> self;
    		Node* _node;
    
    		__list_iterator(Node* node)
    			:_node(node)
    		{}
    
    		self& operator++()
    		{
    			_node = _node->_next;
    			return *this;
    		}
    
    		self& operator--()
    		{
    			_node = _node->_prev;
    			return *this;
    		}
    
    		self operator++(int)
    		{
    			self tmp(*this);
    			_node = _node->_next;
    
    			return tmp;
    		}
    
    		self operator--(int)
    		{
    			self tmp(*this);
    			_node = _node->_prev;
    
    			return tmp;
    		}
    
    		T& operator*()
    		{
    			return _node->_data;
    		}
    
    		T* operator->()
    		{
    			return &_node->_data;
    		}
    
    		bool operator!=(const self& s)
    		{
    			return _node != s._node;
    		}
    
    		bool operator==(const self& s)
    		{
    			return _node == s._node;
    		}
    	};
    
    	template<class T>
    	class list
    	{
    		typedef list_node<T> Node;
    	public:
    		typedef __list_iterator<T> iterator;
    
    		iterator begin()
    		{
    			//return iterator(_head->_next);
    			return _head->_next;
    		}
    
    		iterator end()
    		{
    			//return iterator(_head->_next);
    			return _head;
    		}
    
    		void empty_init()
    		{
    			_head = new Node;
    			_head->_next = _head;
    			_head->_prev = _head;
    
    			_size = 0;
    		}
    
    		list()
    		{
    			empty_init();
    		}
    
    		// lt2(lt1)
    		//list(const list<T>& lt)
    		list(list<T>& lt)
    		{
    			empty_init();
    			for (auto e : lt)
    			{
    				push_back(e);
    			}
    		}
    
    		// lt3 = lt1
    		/*list<int>& operator=(const list<int>& lt)
    		{
    			if (this != &lt)
    			{
    				clear();
    				for (auto e : lt)
    				{
    					push_back(e);
    				}
    			}
    
    			return *this;
    		}*/
    
    		void swap(list<T>& lt)
    		{
    			std::swap(_head, lt._head);
    			std::swap(_size, lt._size);
    		}
    
    		// lt3 = lt1
    		list<int>& operator=(list<int> lt)
    		{
    			swap(lt);
    
    			return *this;
    		}
    
    		~list()
    		{
    			clear();
    
    			delete _head;
    			_head = nullptr;
    		}
    
    		void clear()
    		{
    			iterator it = begin();
    			while (it != end())
    			{
    				it = erase(it);
    			}
    		}
    
    		void push_back(const T& x)
    		{
    			insert(end(), x);
    		}
    
    		void push_front(const T& x)
    		{
    			insert(begin(), x);
    		}
    
    		void pop_front()
    		{
    			erase(begin());
    		}
    
    		void pop_back()
    		{
    			erase(--end());
    		}
    
    		iterator insert(iterator pos, const T& x)
    		{
    			Node* cur = pos._node;
    			Node* newnode = new Node(x);
    
    			Node* prev = cur->_prev;
    
    			// prev newnode cur
    			prev->_next = newnode;
    			newnode->_prev = prev;
    
    			newnode->_next = cur;
    			cur->_prev = newnode;
    
    			++_size;
    
    			return iterator(newnode);
    		}
    
    		iterator erase(iterator pos)
    		{
    			Node* cur = pos._node;
    			Node* prev = cur->_prev;
    			Node* next = cur->_next;
    
    			delete cur;
    			prev->_next = next;
    			next->_prev = prev;
    
    			--_size;
    
    			return iterator(next);
    		}
    
    		size_t size()
    		{
    			return _size;
    		}
    
    	private:
    		Node* _head;
    		size_t _size;
    	};
    
    	void test_list1()
    	{
    		list<int> lt;
    		lt.push_back(1);
    		lt.push_back(2);
    		lt.push_back(3);
    		lt.push_back(4);
    		lt.push_back(5);
    
    		// 封装屏蔽底层差异和实现细节
    		// 提供统一的访问修改遍历方式
    		list<int>::iterator it = lt.begin();
    		while (it != lt.end())
    		{
    			*it += 20;
    
    			cout << *it << " ";
    			++it;
    		}
    		cout << endl;
    
    		for (auto e : lt)
    		{
    			cout << e << " ";
    		}
    		cout << endl;
    
    		/*set<int> s;
    		s.insert(1);
    		s.insert(3);
    		s.insert(2);
    		s.insert(4);
    
    		set<int>::iterator sit = s.begin();
    		while (sit != s.end())
    		{
    			cout << *sit << " ";
    			++sit;
    		}
    		cout << endl;*/
    	}
    
    	void test_list2()
    	{
    		list<int> lt;
    		lt.push_back(1);
    		lt.push_back(2);
    		lt.push_back(3);
    		lt.push_back(4);
    		lt.push_back(5);
    
    		list<int> lt1(lt);
    
    		for (auto e : lt)
    		{
    			cout << e << " ";
    		}
    		cout << endl;
    
    		for (auto e : lt1)
    		{
    			cout << e << " ";
    		}
    		cout << endl;
    
    		list<int> lt2;
    		lt2.push_back(10);
    		lt2.push_back(200);
    		lt2.push_back(30);
    		lt2.push_back(40);
    		lt2.push_back(50);
    
    		lt1 = lt2;
    		for (auto e : lt1)
    		{
    			cout << e << " ";
    		}
    		cout << endl;
    
    		for (auto e : lt2)
    		{
    			cout << e << " ";
    		}
    		cout << endl;
    	}
    
    	struct AA
    	{
    		AA(int a1 = 0, int a2 = 0)
    			:_a1(a1)
    			,_a2(a2)
    		{}
    
    		int _a1;
    		int _a2;
    	};
    
    	void test_list3()
    	{
    		list<AA> lt;
    		lt.push_back(AA(1, 1));
    		lt.push_back(AA(2, 2));
    		lt.push_back(AA(3, 3));
    
    		list<AA>::iterator it = lt.begin();
    		while (it != lt.end())
    		{
    			//cout << (*it)._a1<<" "<<(*it)._a2 << endl;
    			cout << it->_a1 << " " << it->_a2 << endl;
    			cout << it.operator->()->_a1 << " " << it.operator->()->_a1 << endl;
    
    
    			++it;
    		}
    		cout << endl;
    
    		int* p = new int;
    		*p = 1;
    
    		AA* ptr = new AA;
    		ptr->_a1 = 1;
    
    	}
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228
    • 229
    • 230
    • 231
    • 232
    • 233
    • 234
    • 235
    • 236
    • 237
    • 238
    • 239
    • 240
    • 241
    • 242
    • 243
    • 244
    • 245
    • 246
    • 247
    • 248
    • 249
    • 250
    • 251
    • 252
    • 253
    • 254
    • 255
    • 256
    • 257
    • 258
    • 259
    • 260
    • 261
    • 262
    • 263
    • 264
    • 265
    • 266
    • 267
    • 268
    • 269
    • 270
    • 271
    • 272
    • 273
    • 274
    • 275
    • 276
    • 277
    • 278
    • 279
    • 280
    • 281
    • 282
    • 283
    • 284
    • 285
    • 286
    • 287
    • 288
    • 289
    • 290
    • 291
    • 292
    • 293
    • 294
    • 295
    • 296
    • 297
    • 298
    • 299
    • 300
    • 301
    • 302
    • 303
    • 304
    • 305
    • 306
    • 307
    • 308
    • 309
    • 310
    • 311
    • 312
    • 313
    • 314
    • 315
    • 316
    • 317
    • 318
    • 319
    • 320
    • 321
    • 322
    • 323
    • 324
    • 325
    • 326
    • 327
    • 328
    • 329
    • 330
    • 331
    • 332
    • 333
    • 334
    • 335
    • 336
    • 337
    • 338
    • 339
    • 340
    • 341
    • 342
    • 343
    • 344
    • 345
    • 346
    • 347
    • 348
    • 349
    • 350
    • 351
    • 352
    • 353
    • 354
    • 355
    • 356
  • 相关阅读:
    长达 1.7 万字的 explain 关键字指南!
    python协整与异步调用,压榨程序的摸鱼时间——使用异步编写需要循环执行的程序,并获取返回值(2)
    leetCode 852. 山脉数组的峰顶索引
    基于SSM框架的大学生自主学习网站的设计与开发/在线学习系统
    软件测试 | 测试工程师都能看懂的redis,进阶测试开发工程师......
    py13_Python 的输入以及流程控制之分支条件判断结构
    解读内核 sysctl 配置中 panic、oops 相关项目
    vscode go import被标红【can not import find ... in any of ...】
    UE5中APlayerController属性与方法列表(翻译中......)
    Ubuntu18.04 安装完成后的开发配置
  • 原文地址:https://blog.csdn.net/qq_75132460/article/details/133442890