lxlqueue.h
来自「vc编写的数据结构」· C头文件 代码 · 共 31 行
H
31 行
// lxlqueue.h: interface for the lxlqueue class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_LXLQUEUE_H__F9DEA13C_B3B7_45C8_881C_5A9D19667F8C__INCLUDED_)
#define AFX_LXLQUEUE_H__F9DEA13C_B3B7_45C8_881C_5A9D19667F8C__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "lxlink.h"
class lxlqueue
{
public:
int length()const;
bool frontvalue(int&)const;
bool dequeue(int&);
bool enqueue(const int&);
void clear();
lxlqueue(int);
virtual ~lxlqueue();
private:
int size;
lxlink* rear;
lxlink* front;
};
#endif // !defined(AFX_LXLQUEUE_H__F9DEA13C_B3B7_45C8_881C_5A9D19667F8C__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?