2016年5月19日
摘要: #include #include #include #include #define INFINITY 9999 /*最大值∞*/ #define MAX_VEX_NUM 30 /*图的最大顶点数目*/ typedef struct{ int vexnum; ... 阅读全文
posted @ 2016-05-19 20:32 说变就变 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 第13周 参加完数学竞赛后发现自己在高数 方面还有许多的不足,基础知识并 没有完全掌握。之后学习到了高数 里更为详细的知识点,以及更多的 解题方法 阅读全文
posted @ 2016-05-19 20:29 说变就变 阅读(84) 评论(0) 推荐(0) 编辑
  2016年5月5日
摘要: 目前取得的成就在别人眼里也许算不了什么,但还是要说。 初三那个学年的冲刺使自己在年段前进了近百名,进入年段前50并保持,成为了校内进步最大的学生之一。 成长的每一天的收获都是自己的成就,即使微不足道,但对于自己还是可以满足的。 阅读全文
posted @ 2016-05-05 21:38 说变就变 阅读(100) 评论(1) 推荐(0) 编辑
摘要: #include #include #include #include #define MAX_LEN 5 typedef struct node // 结点类型定义 { char optr; int data; struct node *lchild; struct node *rchild; }BTNode; BTNo... 阅读全文
posted @ 2016-05-05 20:45 说变就变 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 第11周 学习了树,二叉树,森林的基本知识点,开始复习 高数所学内容 阅读全文
posted @ 2016-05-05 20:23 说变就变 阅读(104) 评论(0) 推荐(0) 编辑
  2016年4月21日
摘要: 第4周 第5周 第6周 第7周 第8周 学习了队列及树,开始设计 一个网页小游戏 第9周 阅读全文
posted @ 2016-04-21 21:33 说变就变 阅读(86) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h" #include "stdio.h" typedef char DataType ; typedef struct Node{ DataType data; struct Node *firstchild, *nextsibling; }CSTypeNode, *CSTypeTree; CSTypeNode *tp; int flag=0... 阅读全文
posted @ 2016-04-21 18:40 说变就变 阅读(138) 评论(1) 推荐(0) 编辑
摘要: 无标题文档 卡牌记忆游戏 阅读全文
posted @ 2016-04-21 18:34 说变就变 阅读(139) 评论(0) 推荐(0) 编辑
  2016年4月14日
摘要: #include "stdio.h" #include "stdlib.h" #define MAX 30 typedef char DataType; typedef struct Node{ DataType data; /* 数据信息字段 */ int parent; /* 双亲位置字段,以双亲结点在数组中的下标来表示 */ }PType... 阅读全文
posted @ 2016-04-14 16:29 说变就变 阅读(239) 评论(0) 推荐(0) 编辑
  2016年4月7日
摘要: #include <stdio.h>#include <stdlib.h>#define Max_Size 100 /*线性表可能达到的最大长度*/typedef int DataType;typedef struct List{ DataType data[Max_Size]; /*用于存放数据 阅读全文
posted @ 2016-04-07 18:12 说变就变 阅读(405) 评论(0) 推荐(0) 编辑