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

📄 lxlist.h

📁 vc编写的数据结构
💻 H
字号:
// lxlist.h: interface for the lxlist class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_LXLIST_H__4301C24E_1530_46D8_A352_1151E94D1861__INCLUDED_)
#define AFX_LXLIST_H__4301C24E_1530_46D8_A352_1151E94D1861__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "lxllink.h"
#include "lxedge.h"
class lxlist  
{
public:
	void print()const;
	bool getValue(lxedge&)const;
	bool setPos(int);
	int rightLength()const;
	int leftLength()const;
	void next();
	void prev();
	void setEnd();
	void setStart();
	bool remove(lxedge&);
	bool append(const lxedge&);
	bool insert(const lxedge&);
	void clear();
	lxlist(int);
	~lxlist();

private:
	void removeall();
	void init();
	int rightcnt;
	int leftcnt;
	lxllink* fence;
	lxllink* tail;
	lxllink* head;

};

#endif // !defined(AFX_LXLIST_H__4301C24E_1530_46D8_A352_1151E94D1861__INCLUDED_)

⌨️ 快捷键说明

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