摘要:
#include#include#include //时间函数 #define TRUE 1#define FALSE 0#define OK 1#define ERROR 0#define INFEASIBLE -1#define OVERFLOW -2//... 阅读全文
摘要:
#include "iostream"#include "string.h"#include "stdio.h"int main(){ int i,j,k,l; j=0; char a[100],b[100]; gets(a); ... 阅读全文
摘要:
#include#include#include#define OK 1#define ERROR 0#define OVERFLOW -2#define MAXSIZE 100typedef int Status;typedef char SElemType... 阅读全文
摘要:
#include #include using namespace std;//定义结构体;typedef struct Polynode{ int coef; int exp; struct Polynode *next;}Polynode... 阅读全文
摘要:
#include #include #include typedef int Status;typedef float ElemType;typedef struct LXNode{ ElemType data; struct LXNode * next;}L... 阅读全文
摘要:
#include#include#includetypedef struct student{ long number;//学号 char name[10];//姓名 char sex[3];//性别 int age;//年龄 ... 阅读全文
摘要:
#include #include #include typedef int Status;typedef float ElemType;typedef struct DuLNode{ ElemType data; struct DuLNode *prior... 阅读全文
摘要:
#include #include #include typedef float ElemType;typedef int Status;typedef struct SXLNode{ ElemType data; struct SXLNode *prior... 阅读全文
摘要:
#include #include #include #define MAXSIZE 1000 //链表的最大长度typedef float ElemType;//定义float的别名typedef int Status;//定义int的别名 typedef... 阅读全文