• STL list


    在这里插入图片描述

    list 是一个带头双向循环链表,可以存储任意类型

    模板参数 T 表示存储元素的类型,Alloc 是空间配置器,一般不用传

    一、list 类的模拟实现

    iterator 和 const_iterator 除了下述不同外,其他代码基本一模一样:

    • iterator 调用 operator* / operator-> 返回 T& / T*
    • const_iterator 调用 operator* / operator-> 返回 const T& / const T*

    为了减少代码冗余,创建一个公有的模板,并增加两个模板参数,在调用时通过传递不同的模板参数从而得到 iterator 和 const_iterator

    reverse_iterator 和 const_reverse_iterator 通过封装 iterator 实现

    list 类常用接口模拟实现:

    //test.cpp
    #include "list.h"
    
    int main()
    {
    	//starrycat::list_test5();
    
    	starrycat::list_reverse_iterator_test();
    
    	return 0;
    }
    
    //iterator.h
    #pragma once
    
    namespace starrycat
    {
        template<class Iterator, class Ref, class Ptr>
        class __list_reverse_iterator
        {
            typedef __list_reverse_iterator<Iterator, Ref, Ptr> self;
        public:
            __list_reverse_iterator<Iterator, Ref, Ptr>() {}
            __list_reverse_iterator<Iterator, Ref, Ptr>(Iterator iter) : _cur(iter) {}
    
    		//rbegin() 底层返回 end(),rend() 底层返回 begin()
    		//因此在访问元素时,需要访问当前迭代器的前一个位置 
            Ref operator*()
            {
                Iterator tmp = _cur;
                return *--tmp;
            }
    
            Ptr operator->()
            {
                Iterator tmp = _cur;
                return (--tmp).operator->();
            }
    
            self& operator++()
            {
                --_cur;
                return *this;
            }
    
            self operator++(int)
            {
                Iterator tmp = _cur;
                --_cur;
                return tmp;
            }
    
            self& operator--()
            {
                ++_cur;
                return *this;
            }
    
            self operator--(int)
            {
                Iterator tmp = _cur;
                ++_cur;
                return tmp;
            }
    
            bool operator==(const self& s) { _cur == s._cur; }
            bool operator!=(const self& s) { _cur != s._cur; }
    
        private:
            Iterator _cur;
        };
    }
    
    //list.h
    #pragma once
    
    #include "iterator.h"
    #include 
    #include 
    #include 
    
    using std::cout;
    using std::endl;
    
    namespace starrycat
    {
    	//带头双向链表结点
    	template<class T>
    	struct __list_node
    	{
    		__list_node<T>* _prev;
    		__list_node<T>* _next;
    		T _data;
    	};
    
    	//迭代器
    	template<class T, class Ref, class Ptr>
    	struct __list_iterator
    	{
    		typedef __list_node<T> node;
    		typedef __list_iterator<T, Ref, Ptr> self;
    
    		//成员
    		node* _node;
    
    		//默认构造函数
    		__list_iterator<T, Ref, Ptr>()
    		{}
    
    		//构造函数
    		__list_iterator<T, Ref, Ptr>(node* node)
    			: _node(node)
    		{}
    
    		//解引用重载
    		Ref operator*()
    		{
    			return _node->_data;
    		}
    
    		//->重载都需要这样玩
    		Ptr operator->()
    		{
    			return &(_node->_data);
    		}
    
    		//前置++重载
    		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& s) const
    		{
    			return _node == s._node;
    		}
    
    		bool operator!=(const self& s) const
    		{
    			return _node != s._node;
    		}
    	};
    
    	//带头双向链表
    	template<class T>
    	class list
    	{
    	public:
    		typedef __list_node<T> node;
    		typedef __list_iterator<T, T&, T*> iterator;
    		typedef __list_iterator<T, const T&, const T*> const_iterator;
    		typedef __list_reverse_iterator<iterator, T&, T*> reverse_iterator;
    		typedef __list_reverse_iterator<const_iterator, const T&, const T*> const_reverse_iterator;
    
    		void empty_Init()
    		{
    			_head = new node;
    			_head->_next = _head;
    			_head->_prev = _head;
    		}
    
    		//默认构造函数
    		list()
    		{
    			empty_Init();
    		}
    
    		//迭代器区间构造
    		template<class InputIterator>
    		list(InputIterator first, InputIterator last)
    		{
    			empty_Init();
    
    			while (first != last)
    			{
    				push_back(*first);
    				++first;
    			}
    		}
    
    		void swap(list<T>& lt)
    		{
    			std::swap(_head, lt._head);
    		}
    
    		list(const list<T>& lt)
    		{
    			empty_Init();
    
    			list<T> tmp(lt.begin(), lt.end());
    			swap(tmp);
    		}
    
    		list<T>& operator=(list<T> lt)
    		{
    			swap(lt);
    
    			return *this;
    		}
    
    		~list()
    		{
    			clear();
    			delete _head;
    			_head = nullptr;
    		}
    
    		void clear()
    		{
    			iterator it = begin();
    			while (it != end())
    			{
    				it = erase(it);
    			}
    		}
    
    		iterator begin()
    		{
    			return iterator(_head->_next);
    		}
    
    		const_iterator begin() const
    		{
    			return const_iterator(_head->_next);
    		}
    
    		iterator end()
    		{
    			return iterator(_head);
    		}
    
    		const_iterator end() const
    		{
    			return const_iterator(_head);
    		}
    
    		reverse_iterator rbegin()
    		{
    			return end();
    		}
    
    		const_reverse_iterator rbegin() const
    		{
    			return end();
    		}
    
    		reverse_iterator rend()
    		{
    			return begin();
    		}
    
    		const_reverse_iterator rend() const
    		{
    			return begin();
    		}
    
    		bool empty() const
    		{
    			return _head->_next == _head;
    		}
    
    		size_t size() const
    		{
    			size_t result = 0;
    			node* cur = _head->_next;
    			while (cur != _head)
    			{
    				++result;
    				cur = cur->_next;
    			}
    
    			return result;
    		}
    
    		T& front()
    		{
    			return _head->_next->_data;
    		}
    
    		const T& front() const
    		{
    			return _head->_next->_data;
    		}
    
    		T& back()
    		{
    			return _head->_prev->_data;
    		}
    
    		const T& back() const
    		{
    			return _head->_prev->_data;
    		}
    
    		void push_front(const T& x)
    		{
    			//node* _head_next = _head->_next;
    
    			//node* new_node = new node;
    			//new_node->_data = x;
    
    			//_head->_next = new_node;
    			//new_node->_prev = _head;
    			//new_node->_next = _head_next;
    			//_head_next->_prev = new_node;
    
    			insert(begin(), x);
    		}
    
    		void pop_front()
    		{
    			//assert(!empty());
    
    			//node* del = _head->_next;
    			//node* _head_new_next = del->_next;
    
    			//_head->_next = _head_new_next;
    			//_head_new_next->_prev = _head;
    
    			//delete del;
    
    			erase(begin());
    		}
    
    		void push_back(const T& x)
    		{
    			//node* tail = _head->_prev;
    
    			//node* new_node = new node;
    			//new_node->_data = x;
    
    			//tail->_next = new_node;
    			//new_node->_prev = tail;
    			//new_node->_next = _head;
    			//_head->_prev = new_node;
    			insert(end(), x);
    		}
    
    		void pop_back()
    		{
    			//assert(!empty());
    
    			//node* del = _head->_prev;
    			//node* new_tail = del->_prev;
    
    			//new_tail->_next = _head;
    			//_head->_prev = new_tail;
    
    			//delete del;
    
    			erase(--end());
    		}
    
    		iterator insert(iterator pos, const T& x)
    		{
    			node* cur = pos._node;
    			node* prev = cur->_prev;
    
    			node* new_node = new node;
    			new_node->_data = x;
    
    			prev->_next = new_node;
    			new_node->_prev = prev;
    			new_node->_next = cur;
    			cur->_prev = new_node;
    
    			return pos;
    		}
    
    		iterator erase(iterator pos)
    		{
    			node* del = pos._node;
    			node* prev = del->_prev;
    			node* next = del->_next;
    
    			prev->_next = next;
    			next->_prev = prev;
    
    			delete del;
    
    			return next;
    		}
    
    	private:
    		node* _head;
    	};
    
    	void Print1(const list<int>& lt)
    	{
    		list<int>::const_iterator it = lt.begin();
    		while (it != lt.end())
    		{
    			//(*it) *= 10;
    			cout << *it << " ";
    			++it;
    		}
    		cout << endl;
    
    		for (auto e : lt)
    		{
    			cout << e << " ";
    		}
    		cout << endl;
    	}
    
    	void list_test1()
    	{
    		list<int> lt;
    		lt.push_back(1);
    		lt.push_back(2);
    		lt.push_back(3);
    		lt.push_back(4);
    
    		list<int>::iterator it = lt.begin();
    		while (it != lt.end())
    		{
    			(*it) *= 10;
    			cout << *it << " ";
    			++it;
    		}
    		cout << endl;
    
    		for (auto e : lt)
    		{
    			cout << e << " ";
    		}
    		cout << endl;
    
    		Print1(lt);
    	}
    
    	struct A
    	{
    		int _a1;
    		int _a2;
    
    		//构造函数
    		A(int a1 = 0, int a2 = 0)
    			: _a1(a1)
    			, _a2(a2)
    		{}
    	};
    
    	void Print2(const list<A>& lt)
    	{
    		list<A>::const_iterator it = lt.begin();
    		while (it != lt.end())
    		{
    			//it->_a1 *= 2;
    			//it->_a2 *= 2;
    			cout << it->_a1 << " " << it->_a2 << endl;
    			++it;
    		}
    		cout << endl;
    	}
    
    	void list_test2()
    	{
    		list<A> 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<A>::iterator it = lt.begin();
    		while (it != lt.end())
    		{
    			//cout << (*it)._a1 << " " << (*it)._a2 << endl;
    
    			//-> 都需要这样玩
    			//it->_a1 编译器默认解释为 it->->_a1 <==> it.operator->()->_a1;
    			it->_a1 *= 10;
    			it->_a2 *= 10;
    			cout << it->_a1 << " " << it->_a2 << endl;
    			++it;
    		}
    		cout << endl;
    
    		Print2(lt);
    	}
    
    	void list_test3()
    	{
    		list<int> lt;
    		cout << "empty:" << lt.empty() << endl;
    		cout << "size:" << lt.size() << endl;
    
    		lt.push_front(1);
    		lt.push_front(2);
    		lt.push_front(3);
    		lt.push_front(4);
    		for (auto e : lt)
    		{
    			cout << e << " ";
    		}
    		cout << endl;
    
    		cout << "empty:" << lt.empty() << endl;
    		cout << "size:" << lt.size() << endl;
    
    		lt.pop_front();
    		lt.pop_front();
    		//lt.pop_front();
    		//lt.pop_front();
    		//lt.pop_front();
    		for (auto e : lt)
    		{
    			cout << e << " ";
    		}
    		cout << endl;
    
    		lt.push_back(1);
    		lt.push_back(2);
    		lt.push_back(3);
    		lt.push_back(4);
    		for (auto e : lt)
    		{
    			cout << e << " ";
    		}
    		cout << endl;
    
    		lt.pop_back();
    		lt.pop_back();
    		//lt.pop_back();
    		//lt.pop_back();
    		//lt.pop_back();
    		//lt.pop_back();
    		for (auto e : lt)
    		{
    			cout << e << " ";
    		}
    		cout << endl;
    
    		lt.front() *= 10;
    		lt.back() *= 100;
    		for (auto e : lt)
    		{
    			cout << e << " ";
    		}
    		cout << endl;
    	}
    
    	void list_test4()
    	{
    		list<int> 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::iterator pos = std::find(lt.begin(), lt.end(), 2); err
    		lt.insert(++lt.begin(), 20);
    		for (auto e : lt)
    		{
    			cout << e << " ";
    		}
    		cout << endl;
    
    		lt.erase(++lt.begin());
    		for (auto e : lt)
    		{
    			cout << e << " ";
    		}
    		cout << endl;
    	}
    
    	void list_test5()
    	{
    		list<int> lt1;
    		lt1.push_back(1);
    		lt1.push_back(2);
    		lt1.push_back(3);
    		lt1.push_back(4);
    		for (auto e : lt1)
    		{
    			cout << e << " ";
    		}
    		cout << endl;
    
    		list<int> lt2(lt1.begin(), lt1.end());
    		for (auto e : lt1)
    		{
    			cout << e << " ";
    		}
    		cout << endl;
    
    		list<int> lt3(lt2);
    		for (auto e : lt3)
    		{
    			cout << e << " ";
    		}
    		cout << endl;
    
    		lt3.clear();
    		for (auto e : lt3)
    		{
    			cout << e << " ";
    		}
    		cout << endl;
    
    		lt3 = lt2;
    		for (auto e : lt2)
    		{
    			cout << e << " ";
    		}
    		cout << endl;
    
    		for (auto e : lt3)
    		{
    			cout << e << " ";
    		}
    		cout << endl;
    	}
    
    	void Print3(const list<int>& lt)
    	{
    		list<int>::const_reverse_iterator rit = lt.rbegin();
    		while (rit != lt.rend())
    		{
    			//*rit *= 2;
    			cout << *rit << " ";
    			++rit;
    		}
    		cout << endl;
    	}
    
    	void Print4(const list<A>& lt)
    	{
    		list<A>::const_reverse_iterator rit = lt.rbegin();
    		while (rit != lt.rend())
    		{
    			//rit->_a1 *= 10;
    			//rit->_a2 *= 10;
    			cout << rit->_a1 << " " << rit->_a2 << endl;
    			++rit;
    		}
    		cout << endl;
    	}
    
    	void list_reverse_iterator_test()
    	{
    		list<int> lt;
    		lt.push_back(1);
    		lt.push_back(2);
    		lt.push_back(3);
    		lt.push_back(4);
    
    		list<int>::reverse_iterator rit = lt.rbegin();
    		while (rit != lt.rend())
    		{
    			*rit *= 2;
    			cout << *rit << " ";
    			++rit;
    		}
    		cout << endl;
    
    		Print3(lt);
    
    		list<A> ltA;
    		ltA.push_back(A(1, 1));
    		ltA.push_back(A(2, 2));
    		ltA.push_back(A(3, 3));
    		ltA.push_back(A(4, 4));
    
    		list<A>::reverse_iterator ritA = ltA.rbegin();
    		while (ritA != ltA.rend())
    		{
    			ritA->_a1 *= 10;
    			ritA->_a2 *= 10;
    			cout << ritA->_a1 << " " << ritA->_a2 << endl;
    			++ritA;
    		}
    		cout << endl;
    
    		Print4(ltA);
    	}
    }
    
    • 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
    • 357
    • 358
    • 359
    • 360
    • 361
    • 362
    • 363
    • 364
    • 365
    • 366
    • 367
    • 368
    • 369
    • 370
    • 371
    • 372
    • 373
    • 374
    • 375
    • 376
    • 377
    • 378
    • 379
    • 380
    • 381
    • 382
    • 383
    • 384
    • 385
    • 386
    • 387
    • 388
    • 389
    • 390
    • 391
    • 392
    • 393
    • 394
    • 395
    • 396
    • 397
    • 398
    • 399
    • 400
    • 401
    • 402
    • 403
    • 404
    • 405
    • 406
    • 407
    • 408
    • 409
    • 410
    • 411
    • 412
    • 413
    • 414
    • 415
    • 416
    • 417
    • 418
    • 419
    • 420
    • 421
    • 422
    • 423
    • 424
    • 425
    • 426
    • 427
    • 428
    • 429
    • 430
    • 431
    • 432
    • 433
    • 434
    • 435
    • 436
    • 437
    • 438
    • 439
    • 440
    • 441
    • 442
    • 443
    • 444
    • 445
    • 446
    • 447
    • 448
    • 449
    • 450
    • 451
    • 452
    • 453
    • 454
    • 455
    • 456
    • 457
    • 458
    • 459
    • 460
    • 461
    • 462
    • 463
    • 464
    • 465
    • 466
    • 467
    • 468
    • 469
    • 470
    • 471
    • 472
    • 473
    • 474
    • 475
    • 476
    • 477
    • 478
    • 479
    • 480
    • 481
    • 482
    • 483
    • 484
    • 485
    • 486
    • 487
    • 488
    • 489
    • 490
    • 491
    • 492
    • 493
    • 494
    • 495
    • 496
    • 497
    • 498
    • 499
    • 500
    • 501
    • 502
    • 503
    • 504
    • 505
    • 506
    • 507
    • 508
    • 509
    • 510
    • 511
    • 512
    • 513
    • 514
    • 515
    • 516
    • 517
    • 518
    • 519
    • 520
    • 521
    • 522
    • 523
    • 524
    • 525
    • 526
    • 527
    • 528
    • 529
    • 530
    • 531
    • 532
    • 533
    • 534
    • 535
    • 536
    • 537
    • 538
    • 539
    • 540
    • 541
    • 542
    • 543
    • 544
    • 545
    • 546
    • 547
    • 548
    • 549
    • 550
    • 551
    • 552
    • 553
    • 554
    • 555
    • 556
    • 557
    • 558
    • 559
    • 560
    • 561
    • 562
    • 563
    • 564
    • 565
    • 566
    • 567
    • 568
    • 569
    • 570
    • 571
    • 572
    • 573
    • 574
    • 575
    • 576
    • 577
    • 578
    • 579
    • 580
    • 581
    • 582
    • 583
    • 584
    • 585
    • 586
    • 587
    • 588
    • 589
    • 590
    • 591
    • 592
    • 593
    • 594
    • 595
    • 596
    • 597
    • 598
    • 599
    • 600
    • 601
    • 602
    • 603
    • 604
    • 605
    • 606
    • 607
    • 608
    • 609
    • 610
    • 611
    • 612
    • 613
    • 614
    • 615
    • 616
    • 617
    • 618
    • 619
    • 620
    • 621
    • 622
    • 623
    • 624
    • 625
    • 626
    • 627
    • 628
    • 629
    • 630
    • 631
    • 632
    • 633
    • 634
    • 635
    • 636
    • 637
    • 638
    • 639
    • 640
    • 641
    • 642
    • 643
    • 644
    • 645
    • 646
    • 647
    • 648
    • 649
    • 650
    • 651
    • 652
    • 653
    • 654
    • 655
    • 656
    • 657
    • 658
    • 659
    • 660
    • 661
    • 662
    • 663
    • 664
    • 665
    • 666
    • 667
    • 668
    • 669
    • 670
    • 671
    • 672
    • 673
    • 674
    • 675
    • 676
    • 677
    • 678
    • 679
    • 680
    • 681
    • 682
    • 683
    • 684
    • 685
    • 686
    • 687
    • 688
    • 689
    • 690
    • 691
    • 692
    • 693
    • 694
    • 695
    • 696
    • 697
    • 698
    • 699
    • 700
    • 701
    • 702
    • 703
    • 704
    • 705
    • 706
    • 707
    • 708
    • 709
    • 710
    • 711
    • 712
  • 相关阅读:
    使用Spring WebSocket实现实时通信功能
    Docker专题(二)之 操作Docker容器
    实验2.1.2 交换机的常用配置
    【单元测试】SpirngBoot测试Controller,Service,Dao
    ChatGPT 制作转化率分析漏斗图的制作
    WSL + Docker容器,Windows上最爽的开发体验
    英伟达这篇CVPR 2022 Oral火了!2D图像秒变逼真3D物体!虚拟爵士乐队来了!
    归并排序及其拓展应用
    LINK : fatal error LNK1104: 无法打开文件“python310.lib”解决方案
    serveless 思想 Midway.js 框架使用教程(五)
  • 原文地址:https://blog.csdn.net/qq_70793373/article/details/132746227