模板
文章平均质量分 76
蔡碧东
这个作者很懒,什么都没留下…
展开
-
练习赛15.2.取余运算
取余运算 Time Limit : 3000/1000ms (Java/Other) Memory Limit : 65535/32768K (Java/Other)Total Submission(s) : 11 Accepted Submission(s) : 6Font: Times New Roman | Verdana | GeorgiaFont Size: ← →P原创 2013-12-04 20:52:55 · 753 阅读 · 0 评论 -
数据结构的数组
#include#include#include#include#define MAX_ARRAY_DIM 8using namespace std;typedef int Status;typedef int ElemType;typedef struct{ ElemType *base; int dim; int *bounds原创 2014-04-26 23:00:19 · 676 阅读 · 0 评论 -
数据结构之单链表
#include#include#include#define TRUE 1#define FALSE 0#define ERROR 0#define OK 1#define INFEASIBLE -1#define OVERFLOW -2typedef int Status;typedef int ElemType;using namespace st原创 2014-04-26 23:04:49 · 582 阅读 · 0 评论