seqlist.h
来自「用MFC 实现线性表的插入删除等」· C头文件 代码 · 共 30 行
H
30 行
// SeqList.h: interface for the SeqList class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_SEQLIST_H__7A5819AB_4723_4052_AA03_503B1FB89606__INCLUDED_)
#define AFX_SEQLIST_H__7A5819AB_4723_4052_AA03_503B1FB89606__INCLUDED_
#include "node.h" // Added by ClassView
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class SeqList
{
public:
void Delete(int pos);
void Insert(int a,CString b);
void Drawed(CDC*pDC);
SeqList();
virtual ~SeqList();
node list[10];
int tail;
int zb;
private:
};
#endif // !defined(AFX_SEQLIST_H__7A5819AB_4723_4052_AA03_503B1FB89606__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?