#include <string.h>//String function header file #include <ctype.h>//Character function header file #include <malloc.h>//malloc, etc. #include <stdio.h>//Standard input Output header file, including EOF (=^z or F6), NULL, etc. #include <stdlib.h>//atoi (), exit () #include <io.h>//eof () #include <math.h>//Math function header file, including floor (), Celil (), ABS (), etc. #include <sys/timeb.h>//ftime () #include <stdarg.h>//provides macros Va_start,va_arg and va_end for accessing variable-length parameter tables //function result status code. #define TRUE 1#define FALSE 0#define OK 1#define ERROR 0typedef intStatus;//status is the type of function whose value is the function result status code, such as OK, etc.typedef intBoolean;//boolean is a Boolean type, and its value is true and Falsetypedef intElemtype;
Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.
Data structure Common code