List 的简单实现 c++11

/*************List*******************
class List{}
method:
List():
List(const List &rhs)
~List()
const List &operator=(const List &rhs)
List(List &&rhs)
List &operator=(List &&rhs)
int size() const:
bool empty() const:
void clear():
Object& front():
const Object &front() const
Object& back():
const Object& back():
void push_front(const Object &x)
void push_front(Object &&x)
void push_back(const Object &x)
void push_back(Object &&x)
void pop_front()
void pop_back()
iterator insert(iterator itr,const Object &x)
iterator insert(iterator itr,Object &&x)
iterator erase(iterator itr)
iterator erase(iterator from,iterator to)


class Node{}
class const_iterator
class iterator
************************************/

#ifndef LIST_H
#define LIST_H

template<typename Object>
class List
{
private:
	struct Node
	{
		Object data;
		Node *prev;
		Node *next;

		Node(const Object &d=Object{ },Node *p=nullptr,Node *n=nullptr)
		:data(d),prev(p),next(n)
		{ }

		Node(Object &&d,Node *p=nullptr,Node *n=nullptr)
		:data(std::move(d)),prev(p),next(n)
		{ }
	};

public:
	class const_iterator
	{
	public:
		//public constructor for const_iterator
		const_iterator():current(nullptr) { }

		//return the object stored at the current position
		//for const_iterator,this is an accessor with a
		//const reference return type
		const Object &operator *()const
		{return retrieve();}

		const_iterator& operator++()
		{
			current=current->next;
			return *this;
		}

		const_iterator& operator++(int)
		{
			const_iterator old=*this;
			++(*this);
			return old;
		}

		const_iterator& operator--()
		{
			current=current->prev;
			return *this;
		}

		const_iterator& operator--(int)
		{
			const_iterator old=*this;
			--(*this);
			return old;
		}

		bool operator==(const const_iterator &rhs) const
		{
			return current==rhs.current;
		}
		bool operator!=(const const_iterator &rhs) const
		{
			return !(*this==rhs);
		}

	protected:
		Node *current;

		Object& retrieve() const
		{return current->data;}

		const_iterator(Node *p)
		:current(p)
		{ }

		friend class List<Object>;
	};

	class iterator:public const_iterator
	{
	public:
		//public constructor for itertator calls the
		//base-class constructor. 
		iterator(){ }

		Object& operator*()
		{
			return const_iterator::retrieve();
		}

		const Object & operator*() const
		{
			return const_iterator::operator*();
		}

		iterator& operator++()
		{
			this->current=this->current->next;
			return *this;
		}

		iterator& operator++(int)
		{
			iterator old=*this;
			++(*this);
			return old;
		}

		iterator& operator--()
		{
			this->current=this->current->prev;
			return *this;
		}

		iterator& operator--(int)
		{
			iterator old=*this;
			--(*this);
			return old;
		}

	protected:
		iterator(Node *p):const_iterator(p)
		{ }

		friend class List<Object>;
	};


public:
	//constructor
	List()
	{
		init();
	}
	//copy construtor
	List(const List &rhs)
	{
		init();
		for(auto &x:rhs)
			push_back(x);
	}

	//move constructor
	List(List &&rhs)
	:theSize(rhs.theSize),head(rhs.head),tail(rhs.tail)
	{
		rhs.theSize=0;
		rhs.head=nullptr;
		rhs.tail=nullptr;
	}

	//copy assignment
    const List &operator=(const List &rhs)
    {
    	if(this!=&rhs)
    	{
    		clear();
    		for(auto &x:rhs)
    			push_back(x);
    		return *this;
    	}
    }

	//move assignment
    const List &operator=(List &&rhs)
    {
    	std::swap(theSize,rhs.theSize);
    	std::swap(head,rhs.head);
    	std::swap(tail,rhs.tail);

    	return *this;
    }

	//Deconstrcutor
	~List()
	{
		clear();
		delete head;
		delete tail;
	}

	iterator begin()
	{
		return iterator(head->next);
	}

	const_iterator begin() const
	{
		return const_iterator(head->next);
	}

	iterator end()
	{
		return iterator(tail);
	}

	const_iterator end() const
	{
		return const_iterator(tail);
	}

	int size() const
	{return theSize;}

	bool empty()
	{return size()==0;}

	void clear()
	{
		while(!empty())
			pop_front();
	}

	Object &front()
	{
		return *begin();
	}

	const Object &front() const 
	{
		return *begin();
	}

	Object &back()
	{
		return *--end();
	}

	const Object &back() const 
	{
		return *--end();
	}

	void push_front(const Object &x)
	{
		insert(begin(),x);
	}

	void push_front(Object &&x)
	{
		insert(begin(),std::move(x));
	}


	void push_back(const Object &x)
	{
		insert(end(),x);
	}

	void push_back(Object &&x)
	{
		insert(end(),std::move(x));
	}

	void pop_front()
	{
		erase(begin());
	}

	void pop_back()
	{
		erase(--end());
	}

    //insert x before itr.
	iterator insert(iterator itr,const Object &x)
	{
		Node *p=itr.current;
		++theSize;
		return iterator(p->prev=p->prev->next=new Node{x,p->prev,p});
	}

	iterator insert(iterator itr,Object &&x)
	{
		Node *p=itr.current;
		++theSize;
		return iterator(p->prev=p->prev->next=new Node{std::move(x),p->prev,p});

	}

	iterator erase(iterator itr)
	{
		Node *p=itr.current;
		iterator retVal(p->next);
		p->prev->next=p->next;
		p->next->prev=p->prev;
		delete p;
		--theSize;
		return retVal;
	}



	iterator erase(iterator start,iterator end)
	{
		for(iterator itr=start;itr!=end;)
			itr=erase(itr);
		return end;
	}




private:
	int theSize;
	Node *head;
	Node *tail;

	void init()
	{
		theSize=0;
		head=new Node;
		tail=new Node;
		head->next=tail;
		tail->prev=head;
	}

};

#endif



























  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值