⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lxaqueue.h

📁 vc编写的数据结构
💻 H
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -