当前位置:   article > 正文

STL源码剖析 容器 stl_list.h

stl_list.h

本文为senlie原创,转载请保留此地址:http://blog.csdn.net/zhengsenlie


list

----------------------------------------------------------------------
??为什么很多在算法库里有的算法还要在类的成员函数里重新实现一遍?
-->1.因为算法库里的是通用的,对于具体的类来说效率不高。
比如说 reverse 如果直接用 stl_algo.h 里的 reverse,会再调用 iter_swap,
而 iter_swap 的实现方法是借用临时变量来交换两个迭代器指向的元素,这样会调用
好几次构造函数、拷贝方法、析构函数。对于双向链表来说,这完全不需要,只需调整
指针的指向就可以了,所以针对具体的数据结构类,如果通用的算法效率不高时要设计自己的成员函数
-->2.另一个原因是算法库里的算法可能限制迭代器必须是某一类迭代器。
比如 STL 里的 sort() 只接受 RandomAccessItertor, 而 list 的迭代器只是 BidirectionalIterator
描述:
1.概述
不仅是双向链表,而且还是一个环状双向链表
2.迭代器
不能像 vector 一样以普通指针作为迭代器,因为其节点不保证在存储空间中连续存在
list 迭代器是 Bidirectional Iterators
不像 vector , list的插入操作和接合操作(splice)都不会造成原有的 list 迭代器失效
3.数据结构
环状链表只需一个标记,即可完全表示整个链表。只要文章在环状链表的尾端加上一个空白节点,
便符合 STL 规范之"前闭后开"区间。


示例1:
  1. list<int> L;
  2. L.push_back(0);
  3. L.push_front(1);
  4. L.insert(++L.begin(), 2);
  5. copy(L.begin(), L.end(), ostream_iterator<int>(cout, " "));
  6. // The values that are printed are 1 2 0
  7. 示例2
  8. #include <iostream>
  9. #include <iterator>
  10. #include <list>
  11. #include <numeric>
  12. #include <algorithm>
  13. using namespace std;
  14. list<int> mylist1, mylist2;
  15. void display(){
  16. cout << "-------------------------------------------------------" << endl;
  17. copy(mylist1.begin(), mylist1.end(), ostream_iterator<int>(cout, " "));
  18. cout << endl;
  19. copy(mylist2.begin(), mylist2.end(), ostream_iterator<int>(cout, " "));
  20. cout << endl;
  21. }
  22. int main(){
  23. list<int>::iterator it;
  24. for(int i = 1; i <= 4; i++) mylist1.push_back(i); //1 2 3 4
  25. for(int i = 1; i <= 3; i++) mylist2.push_back(i * 10); // 10 20 30
  26. it = mylist1.begin();
  27. ++it; // it 指向元素 2
  28. display();
  29. mylist1.splice(it, mylist2);
  30. display();
  31. /* mylist1: 1 10 20 30 2 3 4
  32. mylist2: 空
  33. it 还是指向元素 2
  34. */
  35. mylist2.splice(mylist2.begin(), mylist1, it);
  36. display();
  37. /* mylist1: 1 10 20 30 3 4
  38. mylist2: 2
  39. it 现在 invalid
  40. */
  41. it = mylist1.begin();
  42. advance(it, 3);
  43. mylist1.splice(mylist1.begin(), mylist1, it, mylist1.end());
  44. display();
  45. it = mylist1.begin();
  46. advance(it, 3);
  47. list<int>::iterator pos = mylist1.begin();
  48. advance(pos,4);
  49. mylist1.splice(pos, mylist1, it, mylist1.end()); //出错了,position 不能位于 [first, last) 之内 --> 感觉这样设计不好,不能编译期提醒,至少要在运行期提醒吧。。。
  50. display();
  51. }


源码:
  1. #ifndef __SGI_STL_INTERNAL_LIST_H
  2. #define __SGI_STL_INTERNAL_LIST_H
  3. __STL_BEGIN_NAMESPACE
  4. #if defined(__sgi) && !defined(__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)
  5. #pragma set woff 1174
  6. #endif
  7. //list的节点,这是一个双向链表
  8. template <class T>
  9. struct __list_node {
  10. typedef void* void_pointer;
  11. void_pointer next;
  12. void_pointer prev;
  13. T data;
  14. };
  15. //list迭代器的设计。(vector的迭代器不需要单独设计,用原生指针就可以)
  16. template<class T, class Ref, class Ptr>
  17. struct __list_iterator {
  18. typedef __list_iterator<T, T&, T*> iterator;
  19. typedef __list_iterator<T, const T&, const T*> const_iterator;
  20. typedef __list_iterator<T, Ref, Ptr> self;
  21. typedef bidirectional_iterator_tag iterator_category;
  22. typedef T value_type;
  23. typedef Ptr pointer;
  24. typedef Ref reference;
  25. typedef __list_node<T>* link_type;
  26. typedef size_t size_type;
  27. typedef ptrdiff_t difference_type;
  28. link_type node; // 指向 list 节点的指针
  29. __list_iterator(link_type x) : node(x) {}
  30. __list_iterator() {}
  31. __list_iterator(const iterator& x) : node(x.node) {}
  32. bool operator==(const self& x) const { return node == x.node; }
  33. bool operator!=(const self& x) const { return node != x.node; }
  34. //取节点的数据值
  35. reference operator*() const { return (*node).data; }
  36. #ifndef __SGI_STL_NO_ARROW_OPERATOR
  37. pointer operator->() const { return &(operator*()); }
  38. #endif /* __SGI_STL_NO_ARROW_OPERATOR */
  39. //迭代器累加 1, 前进一个节点
  40. self& operator++() {
  41. node = (link_type)((*node).next);
  42. // 因为 __list_node 里的 prev 和 next 的类型是 void * ,
  43. //所以还要将它们显示转换为 link_type 类型,即 __list_node * 类型
  44. return *this;
  45. }
  46. self operator++(int) {
  47. self tmp = *this;
  48. ++*this;
  49. return tmp;
  50. }
  51. //迭代器递减 1,后退一个节点
  52. self& operator--() {
  53. node = (link_type)((*node).prev);
  54. return *this;
  55. }
  56. self operator--(int) {
  57. self tmp = *this;
  58. --*this;
  59. return tmp;
  60. }
  61. };
  62. #ifndef __STL_CLASS_PARTIAL_SPECIALIZATION
  63. template <class T, class Ref, class Ptr>
  64. inline bidirectional_iterator_tag
  65. iterator_category(const __list_iterator<T, Ref, Ptr>&) {
  66. return bidirectional_iterator_tag();
  67. }
  68. template <class T, class Ref, class Ptr>
  69. inline T*
  70. value_type(const __list_iterator<T, Ref, Ptr>&) {
  71. return 0;
  72. }
  73. template <class T, class Ref, class Ptr>
  74. inline ptrdiff_t*
  75. distance_type(const __list_iterator<T, Ref, Ptr>&) {
  76. return 0;
  77. }
  78. #endif /* __STL_CLASS_PARTIAL_SPECIALIZATION */
  79. //list的数据结构
  80. template <class T, class Alloc = alloc>
  81. class list {
  82. protected:
  83. typedef void* void_pointer;
  84. typedef __list_node<T> list_node;
  85. //空间配置器,每次配置一个节点大小
  86. typedef simple_alloc<list_node, Alloc> list_node_allocator;
  87. public:
  88. typedef T value_type;
  89. typedef value_type* pointer;
  90. typedef const value_type* const_pointer;
  91. typedef value_type& reference;
  92. typedef const value_type& const_reference;
  93. typedef list_node* link_type;
  94. typedef size_t size_type;
  95. typedef ptrdiff_t difference_type;
  96. public:
  97. typedef __list_iterator<T, T&, T*> iterator;
  98. typedef __list_iterator<T, const T&, const T*> const_iterator;
  99. #ifdef __STL_CLASS_PARTIAL_SPECIALIZATION
  100. typedef reverse_iterator<const_iterator> const_reverse_iterator;
  101. typedef reverse_iterator<iterator> reverse_iterator;
  102. #else /* __STL_CLASS_PARTIAL_SPECIALIZATION */
  103. typedef reverse_bidirectional_iterator<const_iterator, value_type,
  104. const_reference, difference_type>
  105. const_reverse_iterator;
  106. typedef reverse_bidirectional_iterator<iterator, value_type, reference,
  107. difference_type>
  108. reverse_iterator;
  109. #endif /* __STL_CLASS_PARTIAL_SPECIALIZATION */
  110. protected:
  111. //配置一个节点并传回
  112. link_type get_node() { return list_node_allocator::allocate(); }
  113. //释放 p 指向的节点空间
  114. void put_node(link_type p) { list_node_allocator::deallocate(p); }
  115. //配置并构造一个节点使它的值为 x
  116. link_type create_node(const T& x) {
  117. link_type p = get_node();
  118. __STL_TRY {
  119. construct(&p->data, x);
  120. }
  121. __STL_UNWIND(put_node(p));
  122. return p;
  123. }
  124. //析构并释放一个节点
  125. void destroy_node(link_type p) {
  126. destroy(&p->data);
  127. put_node(p);
  128. }
  129. protected:
  130. void empty_initialize() {
  131. node = get_node(); //配置一个节点空间,令 node 指向它
  132. node->next = node; // 令 node 的头尾都指向自己,不设元素值
  133. node->prev = node;
  134. }
  135. void fill_initialize(size_type n, const T& value) {
  136. empty_initialize();
  137. __STL_TRY {
  138. insert(begin(), n, value);
  139. }
  140. __STL_UNWIND(clear(); put_node(node));
  141. }
  142. #ifdef __STL_MEMBER_TEMPLATES
  143. template <class InputIterator>
  144. void range_initialize(InputIterator first, InputIterator last) {
  145. empty_initialize();
  146. __STL_TRY {
  147. insert(begin(), first, last);
  148. }
  149. __STL_UNWIND(clear(); put_node(node));
  150. }
  151. #else /* __STL_MEMBER_TEMPLATES */
  152. void range_initialize(const T* first, const T* last) {
  153. empty_initialize();
  154. __STL_TRY {
  155. insert(begin(), first, last);
  156. }
  157. __STL_UNWIND(clear(); put_node(node));
  158. }
  159. void range_initialize(const_iterator first, const_iterator last) {
  160. empty_initialize();
  161. __STL_TRY {
  162. insert(begin(), first, last);
  163. }
  164. __STL_UNWIND(clear(); put_node(node));
  165. }
  166. #endif /* __STL_MEMBER_TEMPLATES */
  167. protected:
  168. link_type node; //只要一个指针,便可表示整个环状双向链表。
  169. // node指向刻意置于尾端的一个空白节点,满足"前闭后开"
  170. public:
  171. list() { empty_initialize(); } // 产生一个空链表
  172. iterator begin() { return (link_type)((*node).next); }
  173. const_iterator begin() const { return (link_type)((*node).next); }
  174. iterator end() { return node; }
  175. const_iterator end() const { return node; }
  176. reverse_iterator rbegin() { return reverse_iterator(end()); }
  177. const_reverse_iterator rbegin() const {
  178. return const_reverse_iterator(end());
  179. }
  180. reverse_iterator rend() { return reverse_iterator(begin()); }
  181. const_reverse_iterator rend() const {
  182. return const_reverse_iterator(begin());
  183. }
  184. bool empty() const { return node->next == node; }
  185. size_type size() const {
  186. size_type result = 0;
  187. distance(begin(), end(), result);
  188. return result;
  189. }
  190. size_type max_size() const { return size_type(-1); }
  191. reference front() { return *begin(); }
  192. const_reference front() const { return *begin(); }
  193. reference back() { return *(--end()); }
  194. const_reference back() const { return *(--end()); }
  195. void swap(list<T, Alloc>& x) { __STD::swap(node, x.node); }
  196. //在迭代器 positioni 所指空间插入一个节点,内容为 x
  197. iterator insert(iterator position, const T& x) {
  198. //使用 create_node 配置并构造一个节点,让它的值为 x
  199. link_type tmp = create_node(x);
  200. //调整双向指针,使 tmp 插入进去
  201. tmp->next = position.node;
  202. tmp->prev = position.node->prev;
  203. (link_type(position.node->prev))->next = tmp;
  204. position.node->prev = tmp;
  205. return tmp;
  206. }
  207. iterator insert(iterator position) { return insert(position, T()); }
  208. #ifdef __STL_MEMBER_TEMPLATES
  209. template <class InputIterator>
  210. void insert(iterator position, InputIterator first, InputIterator last);
  211. #else /* __STL_MEMBER_TEMPLATES */
  212. void insert(iterator position, const T* first, const T* last);
  213. void insert(iterator position,
  214. const_iterator first, const_iterator last);
  215. #endif /* __STL_MEMBER_TEMPLATES */
  216. void insert(iterator pos, size_type n, const T& x);
  217. void insert(iterator pos, int n, const T& x) {
  218. insert(pos, (size_type)n, x);
  219. }
  220. void insert(iterator pos, long n, const T& x) {
  221. insert(pos, (size_type)n, x);
  222. }
  223. void push_front(const T& x) { insert(begin(), x); }
  224. void push_back(const T& x) { insert(end(), x); }
  225. iterator erase(iterator position) {
  226. link_type next_node = link_type(position.node->next);
  227. link_type prev_node = link_type(position.node->prev);
  228. prev_node->next = next_node;
  229. next_node->prev = prev_node;
  230. destroy_node(position.node);
  231. return iterator(next_node);
  232. }
  233. iterator erase(iterator first, iterator last);
  234. void resize(size_type new_size, const T& x);
  235. void resize(size_type new_size) { resize(new_size, T()); }
  236. void clear();
  237. void pop_front() { erase(begin()); } //移除头节点
  238. void pop_back() { //移除尾节点 其实可能直接 erase(--end()); 不过效果一样
  239. iterator tmp = end();
  240. erase(--tmp);
  241. }
  242. list(size_type n, const T& value) { fill_initialize(n, value); }
  243. list(int n, const T& value) { fill_initialize(n, value); }
  244. list(long n, const T& value) { fill_initialize(n, value); }
  245. explicit list(size_type n) { fill_initialize(n, T()); }
  246. #ifdef __STL_MEMBER_TEMPLATES
  247. template <class InputIterator>
  248. list(InputIterator first, InputIterator last) {
  249. range_initialize(first, last);
  250. }
  251. #else /* __STL_MEMBER_TEMPLATES */
  252. list(const T* first, const T* last) { range_initialize(first, last); }
  253. list(const_iterator first, const_iterator last) {
  254. range_initialize(first, last);
  255. }
  256. #endif /* __STL_MEMBER_TEMPLATES */
  257. list(const list<T, Alloc>& x) {
  258. range_initialize(x.begin(), x.end());
  259. }
  260. ~list() {
  261. clear();
  262. put_node(node);
  263. }
  264. list<T, Alloc>& operator=(const list<T, Alloc>& x);
  265. protected:
  266. //将某连续范围[first, last)的元素迁移到某个特定位置 position 之前
  267. //非公开接口
  268. void transfer(iterator position, iterator first, iterator last) {
  269. if (position != last) { //如果 position == last 那就不用迁移了
  270. (*(link_type((*last.node).prev))).next = position.node;
  271. (*(link_type((*first.node).prev))).next = last.node;
  272. (*(link_type((*position.node).prev))).next = first.node;
  273. link_type tmp = link_type((*position.node).prev);
  274. (*position.node).prev = (*last.node).prev;
  275. (*last.node).prev = (*first.node).prev;
  276. (*first.node).prev = tmp;
  277. }
  278. }
  279. public:
  280. //将 x 接合于 position 所指位置之前。 x 必须不同于 *this --> 这样限制 x 好吗? 不应该提前到编译期提醒客户端吗?我试了下 x 等于 *this,运行没出错
  281. void splice(iterator position, list& x) {
  282. if (!x.empty())
  283. transfer(position, x.begin(), x.end());
  284. }
  285. //将 i 所指元素接合于 position 所指位置之前。 position 和 i 可指向同一个 list
  286. // ?? 这里 list &参数有什么用? --> 我感觉没用,有迭代器 i 就够了
  287. void splice(iterator position, list&, iterator i) {
  288. iterator j = i;
  289. ++j;
  290. if (position == i || position == j) return; //transfer 里有判断 position == j 的情况,没判断 position == i 的情况,而将自己移到自己前面什么都不用做
  291. transfer(position, i, j);
  292. }
  293. //将 [first, last) 内的所有元素接合于 position 所指位置之前
  294. // position 和 [first, last) 可指向同一个 list,
  295. // 但 position 不能位于 [first, last) 之内
  296. void splice(iterator position, list&, iterator first, iterator last) {
  297. if (first != last)
  298. transfer(position, first, last);
  299. }
  300. void remove(const T& value);
  301. void unique();
  302. void merge(list& x);
  303. void reverse();
  304. void sort();
  305. #ifdef __STL_MEMBER_TEMPLATES
  306. template <class Predicate> void remove_if(Predicate);
  307. template <class BinaryPredicate> void unique(BinaryPredicate);
  308. template <class StrictWeakOrdering> void merge(list&, StrictWeakOrdering);
  309. template <class StrictWeakOrdering> void sort(StrictWeakOrdering);
  310. #endif /* __STL_MEMBER_TEMPLATES */
  311. friend bool operator== __STL_NULL_TMPL_ARGS (const list& x, const list& y);
  312. };
  313. template <class T, class Alloc>
  314. inline bool operator==(const list<T,Alloc>& x, const list<T,Alloc>& y) {
  315. typedef typename list<T,Alloc>::link_type link_type;
  316. link_type e1 = x.node;
  317. link_type e2 = y.node;
  318. link_type n1 = (link_type) e1->next;
  319. link_type n2 = (link_type) e2->next;
  320. for ( ; n1 != e1 && n2 != e2 ;
  321. n1 = (link_type) n1->next, n2 = (link_type) n2->next)
  322. if (n1->data != n2->data)
  323. return false;
  324. return n1 == e1 && n2 == e2;
  325. }
  326. template <class T, class Alloc>
  327. inline bool operator<(const list<T, Alloc>& x, const list<T, Alloc>& y) {
  328. return lexicographical_compare(x.begin(), x.end(), y.begin(), y.end());
  329. }
  330. #ifdef __STL_FUNCTION_TMPL_PARTIAL_ORDER
  331. template <class T, class Alloc>
  332. inline void swap(list<T, Alloc>& x, list<T, Alloc>& y) {
  333. x.swap(y);
  334. }
  335. #endif /* __STL_FUNCTION_TMPL_PARTIAL_ORDER */
  336. #ifdef __STL_MEMBER_TEMPLATES
  337. template <class T, class Alloc> template <class InputIterator>
  338. void list<T, Alloc>::insert(iterator position,
  339. InputIterator first, InputIterator last) {
  340. for ( ; first != last; ++first)
  341. insert(position, *first);
  342. }
  343. #else /* __STL_MEMBER_TEMPLATES */
  344. template <class T, class Alloc>
  345. void list<T, Alloc>::insert(iterator position, const T* first, const T* last) {
  346. for ( ; first != last; ++first)
  347. insert(position, *first);
  348. }
  349. template <class T, class Alloc>
  350. void list<T, Alloc>::insert(iterator position,
  351. const_iterator first, const_iterator last) {
  352. for ( ; first != last; ++first)
  353. insert(position, *first);
  354. }
  355. #endif /* __STL_MEMBER_TEMPLATES */
  356. template <class T, class Alloc>
  357. void list<T, Alloc>::insert(iterator position, size_type n, const T& x) {
  358. for ( ; n > 0; --n)
  359. insert(position, x);
  360. }
  361. template <class T, class Alloc>
  362. list<T,Alloc>::iterator list<T, Alloc>::erase(iterator first, iterator last) {
  363. while (first != last) erase(first++);
  364. return last;
  365. }
  366. template <class T, class Alloc>
  367. void list<T, Alloc>::resize(size_type new_size, const T& x)
  368. {
  369. iterator i = begin();
  370. size_type len = 0;
  371. for ( ; i != end() && len < new_size; ++i, ++len)
  372. ;
  373. if (len == new_size)
  374. erase(i, end());
  375. else // i == end()
  376. insert(end(), new_size - len, x);
  377. }
  378. template <class T, class Alloc>
  379. void list<T, Alloc>::clear()
  380. {
  381. link_type cur = (link_type) node->next;
  382. while (cur != node) { //遍历每一个节点
  383. link_type tmp = cur;
  384. cur = (link_type) cur->next;
  385. destroy_node(tmp); //析构并释放一个节点
  386. }
  387. node->next = node; //恢复空链表时的节点状态
  388. node->prev = node;
  389. }
  390. template <class T, class Alloc>
  391. list<T, Alloc>& list<T, Alloc>::operator=(const list<T, Alloc>& x) {
  392. if (this != &x) {
  393. iterator first1 = begin();
  394. iterator last1 = end();
  395. const_iterator first2 = x.begin();
  396. const_iterator last2 = x.end();
  397. while (first1 != last1 && first2 != last2) *first1++ = *first2++;
  398. if (first2 == last2)
  399. erase(first1, last1);
  400. else
  401. insert(last1, first2, last2);
  402. }
  403. return *this;
  404. }
  405. //将数值为 value 之所有元素移除
  406. template <class T, class Alloc>
  407. void list<T, Alloc>::remove(const T& value) {
  408. iterator first = begin();
  409. iterator last = end();
  410. while (first != last) {
  411. iterator next = first;
  412. ++next;
  413. if (*first == value) erase(first);
  414. first = next;
  415. }
  416. }
  417. //移除连续相同的元素,只保留一个
  418. template <class T, class Alloc>
  419. void list<T, Alloc>::unique() {
  420. iterator first = begin();
  421. iterator last = end();
  422. if (first == last) return; //空链表,什么都不必做
  423. iterator next = first;
  424. while (++next != last) { //遍历每一个节点
  425. if (*first == *next) //相同移除之
  426. erase(next);
  427. else //不同调整指针指向
  428. first = next;
  429. next = first;
  430. }
  431. }
  432. template <class T, class Alloc>
  433. void list<T, Alloc>::merge(list<T, Alloc>& x) {
  434. iterator first1 = begin();
  435. iterator last1 = end();
  436. iterator first2 = x.begin();
  437. iterator last2 = x.end();
  438. while (first1 != last1 && first2 != last2)
  439. if (*first2 < *first1) {
  440. iterator next = first2;
  441. transfer(first1, first2, ++next);
  442. first2 = next;
  443. }
  444. else
  445. ++first1;
  446. if (first2 != last2) transfer(last1, first2, last2);
  447. }
  448. // reverse() 将 *this 的内容逆向重置
  449. template <class T, class Alloc>
  450. void list<T, Alloc>::reverse() {
  451. if (node->next == node || link_type(node->next)->next == node) return;
  452. iterator first = begin();
  453. ++first;
  454. while (first != end()) {
  455. iterator old = first;
  456. ++first;
  457. transfer(begin(), old, first);
  458. }
  459. }
  460. /* list 不能使用 STL 算法 sort(), 必须使用自己的 sort() 成员函数
  461. 因为 STL 算法 sort() 只接受 RandomAccessItertor
  462. ?? STL 算法 sort() 为什么不设计接受 BidirectionalIterator
  463. 不过我觉得即使 STL 算法 sort() 接受 BidirectionalIterator , 它里面实现也是
  464. 用类似 iter_swap 的方法,这里也要针对链表的特点重新写 sort() 函数
  465. /*
  466. template <class T, class Alloc>
  467. void list<T, Alloc>::sort() {
  468. //
  469. if (node->next == node || link_type(node->next)->next == node) return;
  470. list<T, Alloc> carry;
  471. list<T, Alloc> counter[64];
  472. int fill = 0;
  473. while (!empty()) {
  474. carry.splice(carry.begin(), *this, begin());
  475. int i = 0;
  476. while(i < fill && !counter[i].empty()) {
  477. counter[i].merge(carry);
  478. carry.swap(counter[i++]);
  479. }
  480. carry.swap(counter[i]);
  481. if (i == fill) ++fill;
  482. }
  483. for (int i = 1; i < fill; ++i) counter[i].merge(counter[i-1]);
  484. swap(counter[fill-1]);
  485. }
  486. #ifdef __STL_MEMBER_TEMPLATES
  487. template <class T, class Alloc> template <class Predicate>
  488. void list<T, Alloc>::remove_if(Predicate pred) {
  489. iterator first = begin();
  490. iterator last = end();
  491. while (first != last) {
  492. iterator next = first;
  493. ++next;
  494. if (pred(*first)) erase(first);
  495. first = next;
  496. }
  497. }
  498. template <class T, class Alloc> template <class BinaryPredicate>
  499. void list<T, Alloc>::unique(BinaryPredicate binary_pred) {
  500. iterator first = begin();
  501. iterator last = end() while (++next != last) {
  502. if (binary_pred(*first, *next))
  503. erase(next);
  504. else
  505. first = next;
  506. next = first;
  507. }
  508. }
  509. template <class T, class Alloc> template <class StrictWeakOrdering>
  510. void list<T, Alloc>::merge(list<T, Alloc>& x, StrictWeakOrdering comp) {
  511. iterator first1 = begin();
  512. iterator last1 = end();
  513. iterator first2 = x.begin();
  514. iterator last2 = x.end();
  515. while (first1 != last1 && first2 != last2)
  516. if (comp(*first2, *first1)) {
  517. iterator next = first2;
  518. transfer(first1, first2, ++next);
  519. first2 = next;
  520. }
  521. else
  522. ++first1;
  523. if (first2 != last2) transfer(last1, first2, last2);
  524. }
  525. template <class T, class Alloc> template <class StrictWeakOrdering>
  526. void list<T, Alloc>::sort(StrictWeakOrdering comp) {
  527. if (node->next == node || link_type(node->next)->next == node) return;
  528. list<T, Alloc> carry;
  529. list<T, Alloc> counter[64];
  530. int fill = 0;
  531. while (!empty()) {
  532. carry.splice(carry.begin(), *this, begin());
  533. int i = 0;
  534. while(i < fill && !counter[i].empty()) {
  535. counter[i].merge(carry, comp);
  536. carry.swap(counter[i++]);
  537. }
  538. carry.swap(counter[i]);
  539. if (i == fill) ++fill;
  540. }
  541. for (int i = 1; i < fill; ++i) counter[i].merge(counter[i-1], comp);
  542. swap(counter[fill-1]);
  543. }
  544. #endif /* __STL_MEMBER_TEMPLATES */
  545. #if defined(__sgi) && !defined(__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)
  546. #pragma reset woff 1174
  547. #endif
  548. __STL_END_NAMESPACE
  549. #endif /* __SGI_STL_INTERNAL_LIST_H */
  550. // Local Variables:
  551. // mode:C++
  552. // End:







                                                           
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/128142
推荐阅读
相关标签
  

闽ICP备14008679号