资源简介
简单队列操作,vc++实现。队列类实现,小弟新手,大神莫黑
代码片段和文件信息
#include
using namespace std ;
struct Node{
int data ;
Node * next ;
Node(int d):next(NULL)
{data=d ;}
};
class Queue{
private :
Node *head;
Node *tail;
public :
Queue(){
head = NULL ;
tail = head ;
}
int Pop() {
if(head == NULL)
return false;
Node* p = head ;
if(head->next == NULL)
tail = NULL ;
head = head->next ;
int data = p->data ;
delete p ;
return data ;
}
voi
- 上一篇:Vc++/MFC下 Json解析
- 下一篇:C++蚁群算法的机器人路径规划
评论
共有 条评论