?? seqlist.h
字號:
#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
#define OK 1
#define ERROR 0
#define TRUE 1
#define FALSE 0
#define ElemType int
#define MAXSIZE 100 /*此處的宏定義常量表示線性表可能達(dá)到的最大長度*/
typedef struct
{
ElemType elem[MAXSIZE]; /*線性表占用的數(shù)組空間*/
int last; /*記錄線性表中最后一個元素在數(shù)組elem[ ]中的位置(下標(biāo)值),空表置為-1*/
}SeqList;
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -