lxaqueue.h

来自「vc编写的数据结构」· C头文件 代码 · 共 31 行

H
31
字号
// lxaqueue.h: interface for the lxaqueue class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_LXAQUEUE_H__8654EFF0_3972_4AA0_AE9A_06BCC1F77A1E__INCLUDED_)
#define AFX_LXAQUEUE_H__8654EFF0_3972_4AA0_AE9A_06BCC1F77A1E__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class lxaqueue  
{
public:
	int length()const;
	bool frontvalue(int&)const;
	bool dequeue(int&);
	bool enqueue(const int&);
	void clear();
	lxaqueue(int);
	virtual ~lxaqueue();

private:
	int rear;
	int* listarray;
	int front;
	int size;
};

#endif // !defined(AFX_LXAQUEUE_H__8654EFF0_3972_4AA0_AE9A_06BCC1F77A1E__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?