| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 373 人关注过本帖
标题:分享C++用数组和链表分别实现Queue代码
只看楼主 加入收藏
shitainong
Rank: 1
等 级:新手上路
帖 子:70
专家分:0
注 册:2012-7-6
结帖率:0
收藏
 问题点数:0 回复次数:0 
分享C++用数组和链表分别实现Queue代码
template<typename T,typename container>
class queue
{
public: www.
bool empty() const
{
return len==0;
}

void checkEmpty()
{
if(empty())
{
throw new exception("队列中没有数据");
}
}

T& back()
{
checkEmpty();
return cur->val;  
}

const T& back() const
{
return back();
}

void pop()
{
checkEmpty();
if(head->next==cur)
{
delete head->next;
head->next=NULL;
}else
{
node* tmp=head->next;
head->next=tmp->next;
delete tmp;
}
--len;
}

T& front()
{
checkEmpty();
return head->next->val;
}

const T& front() const
{
return front();
}

void push(const T& val)
{
node *tmp=new node(val);
cur->next=tmp;
cur=tmp;
++len;
}

queue()
{
initialize();
}

explicit queue(const container& cont)
{
initialize();
vector <int>::const_iterator iter=cont.begin();
while(iter!=cont.end())
{
push(*iter++);
}
}

~queue()
{
node *tmp;
while(tmp!=NULL)
{
tmp=head;
head=head->next;
delete tmp;
tmp=NULL;
}
delete cur;
}


int size()
{
return len;
}

protected:
typedef struct node1
{
node1 *next;
T val;
node1(T v):val(v),next(NULL){}
}node;

private :
int len;
node *head;
node *cur;
void initialize()
{
head=new node(-1);
cur=head;
len=0;
}
};



[cpp] view plaincopyprint?
template<typename T,typename container>
class queue
{
public:
bool empty() const
{
return head==rail;
}

void checkEmpty()
{
if(empty())
{
throw new exception("队列中没有数据");
}
}

//队尾元素
T& back()
{
checkEmpty();
return arr[rail-1];
}

const T& back() const
{
return back();
}

//出队
void pop()
{
checkEmpty();
arr[head++]=0;
}

//队头元素
T& front()
{
checkEmpty();
return arr[head];
}

const T& front() const
{
return front();
}

//入队
void push(const T& val)
{
if(rail>=capacity){
capacity=(rail-head)*2;
T *tmp=new T[capacity];
int j=0;
for(int i=head;i<rail;i++)
{
tmp[j++]=arr[i];
}
delete arr;
arr=tmp;
rail=rail-head;
head=0;
}
arr[rail++]=val;
}

queue()
{
initialize(4);
}

queue(int capacity)
{
initialize(capacity);
}

explicit queue(const container& cont)
{
initialize(cont.size());
vector <int>::const_iterator iter=cont.begin();
while(iter!=cont.end())
{
push(*iter++);
}
}

~queue()
{
delete arr;
}

//队列中元素个数
int size()
{
return rail-head;
}

protected:
typedef struct node1
{
node1 *next;
T val;
node1(T v):val(v),next(NULL){}
}node;

private :
int capacity;
int head;//对头元素的位置
int rail;//对尾元素的位置www.
int *arr;

void initialize(int cap)
{
capacity=cap;
arr=new int[capacity];
head=rail=0;
}
};

搜索更多相关主题的帖子: next head public return 
2012-07-23 14:31
快速回复:分享C++用数组和链表分别实现Queue代码
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.034231 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved