C++ 模拟实现list(迭代器)实现代码
来源:本站原创|时间:2020-01-10|栏目:C语言|点击:172 次
C++ 模拟实现list(迭代器)
实现代码:
#pragma once; #include <assert.h> #include<iostream> #include <assert.h> using namespace std; template<class T> struct __ListNode T _data; __ListNode<T>* _next; __ListNode<T>* _prev; __ListNode(const T& x) :_data(x) ,_next(NULL) ,_prev(NULL) ; template <class T,class Ref,class Ptr > struct __ListIterator typedef __ListNode<T> Node; typedef __ListIterator<T,Ref,Ptr> Self; __ListIterator(Node* node) :_node(node) Ref operator*() return _node->_data; Ptr operator->() return &(_node->_data) Self& operator++() _node=_node->_next; return *this; Self& operator--() _node=_node->_prev; return *this; Self operator++(int) Self tmp=_node; _node=_node->_next; //return tmp; return Self(tmp) Self operator--(int) Self tmp=(*this); _node=_node->_prev; return tmp; bool operator!=(const Self& s) const return this->_node!=s._node; bool operator==(const Self& s) const return this->_node==s._node; Node* _node; ; template<class T> struct List typedef __ListNode<T> Node; public: typedef __ListIterator<T,T&,T*> Iterator; typedef __ListIterator<T,const T&,const T*> ConstIterator; Node* GetNode(const T& x) return new Node(x); List() _head=GetNode(T()); _head->_next=_head; _head->_prev=_head; Iterator Begin() return Iterator(_head->_next); Iterator End() return Iterator(_head); ConstIterator Begin() const return ConstIterator(_head->_next); ConstIterator End() const return ConstIterator(_head); void PushBack(const T& x) /* Node* _tail=_head->_prev; Node* tmp=GetNode(x); _tail->_next=tmp; tmp->_prev=_tail; tmp->_next=_head; _head->_prev=tmp;*/ Insert(End(),x); void PopBack() /* assert(_head->_prev ); Node* tail=_head->_prev; Node* prev=tail->_prev; Node* next=tail->_next; prev->_next=next; next->_prev=prev; delete tail;*/ Erase(--End()); void PushFront(const T& x) /*assert(_head) Node* tmp=GetNode(x); Node* next=_head->_next; _head->_next=tmp; tmp->_prev=_head; tmp->_next=next; next->_prev=tmp;*/ Insert(Begin(),x); void PopFront() /*assert(_head->_next); Node* tmp=_head->_next; Node* next=tmp->_next; _head->_next= next; next->_prev=_head; delete tmp;*/ Erase(Begin()); Iterator Insert(Iterator pos, const T& x) assert(pos._node); Node* tmp=GetNode(x); Node* cur=pos._node; Node* prev=cur->_prev; prev->_next=tmp; tmp->_prev=prev; tmp->_next=cur; cur->_prev=tmp; return tmp; Iterator Erase(Iterator pos) assert(pos._node && pos._node!=NULL); Node* tmp=pos._node; Node* next=tmp->_next; Node* prev=tmp->_prev; next->_prev=prev; prev->_next=next; delete tmp; return Iterator(next); protected: Node* _head; ; void PrintList(const List<int>& l) List<int>::ConstIterator It=l.Begin(); while(It!=l.End()) cout<<*It<<" "; ++It; cout<<endl; void TestList2() List<int> l2; l2.PushBack(1); l2.PushBack(2); l2.PushBack(3); l2.PushBack(4); l2.PopBack(); l2.PopBack(); l2.PopBack(); l2.PopBack(); l2.PopBack(); PrintList(l2); void TestList3() List<int> l3; l3.PushFront(1); l3.PushFront(2); l3.PushFront(3); l3.PushFront(4); l3.PopFront(); l3.PopFront(); l3.PopFront(); PrintList(l3);
#include "List.h" int main() //TestList1(); //TestList2(); TestList3(); return 0;
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
上一篇:C语言数据结构 栈的基础操作
栏 目:C语言
下一篇:C语言中左移和右移运算符详细介绍
本文地址:https://www.xiuzhanwang.com/a1/Cyuyan/1537.html
您可能感兴趣的文章
- 04-02c语言没有round函数 round c语言
- 01-10数据结构课程设计-用栈实现表达式求值的方法详解
- 01-10使用OpenGL实现3D立体显示的程序代码
- 01-10深入理解C++中常见的关键字含义
- 01-10求斐波那契(Fibonacci)数列通项的七种实现方法
- 01-10C语言 解决不用+、-、&#215;、&#247;数字运算符做加法
- 01-10使用C++实现全排列算法的方法详解
- 01-10c++中inline的用法分析
- 01-10用C++实现DBSCAN聚类算法
- 01-10深入全排列算法及其实现方法


阅读排行
本栏相关
- 04-02c语言函数调用后清空内存 c语言调用
- 04-02func函数+在C语言 func函数在c语言中
- 04-02c语言的正则匹配函数 c语言正则表达
- 04-02c语言用函数写分段 用c语言表示分段
- 04-02c语言中对数函数的表达式 c语言中对
- 04-02c语言编写函数冒泡排序 c语言冒泡排
- 04-02c语言没有round函数 round c语言
- 04-02c语言分段函数怎么求 用c语言求分段
- 04-02C语言中怎么打出三角函数 c语言中怎
- 04-02c语言调用函数求fibo C语言调用函数求
随机阅读
- 01-10SublimeText编译C开发环境设置
- 01-11ajax实现页面的局部加载
- 01-10C#中split用法实例总结
- 01-10delphi制作wav文件的方法
- 04-02jquery与jsp,用jquery
- 08-05dedecms(织梦)副栏目数量限制代码修改
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 08-05DEDE织梦data目录下的sessions文件夹有什