linklist.h
来自「正规(则)表达式转化为NFA」· C头文件 代码 · 共 29 行
H
29 行
// LinkList.h: interface for the LinkList class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_LINKLIST_H__A7BCD2C0_4846_4017_B869_475419C0C978__INCLUDED_)
#define AFX_LINKLIST_H__A7BCD2C0_4846_4017_B869_475419C0C978__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "ListNode.h"
class LinkList
{
public:
ListNode * head;
ListNode * tail;
ListNode * currptr;
public:
void ClearList();
void InsertTail(int itemval);
LinkList();
virtual ~LinkList();
};
#endif // !defined(AFX_LINKLIST_H__A7BCD2C0_4846_4017_B869_475419C0C978__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?