数据结构
nishuihan19880108
这个作者很懒,什么都没留下…
展开
-
(数据结构)栈_迷宫求解(严蔚敏P50) _模仿
一般方法: #include"ds.h" #define MAX_COLUM 10 //迷宫最大列数 #define MAX_ROW 10 //迷宫最大行数 #define MAX_NUM 100 //存储空间初始分配量,估计实际量设定 int NUM[MAX_NUM]; //记录curstep int NUM_CURSTEP=0; //实际curstep个数 /*用数组表示数据结构书转载 2014-01-12 11:32:21 · 2097 阅读 · 0 评论 -
(数据结构)线性表_多项式相加1_模仿
#include #include #include typedef int ElemType; typedef struct Node *PloyNode; typedef struct Node *PloyList; /*结构体*/ struct Node { int coef; int expn; PloyNode next; }; /*带表头的单向链表*/ void转载 2014-01-03 22:00:09 · 749 阅读 · 0 评论 -
(数据结构)线性表_单链表反转 _模仿
#include #include #include typedef int ElemType; typedef struct Node *List; typedef struct Node *Position; typedef struct Node Node; struct Node { ElemType Element; List next; }; in转载 2014-01-05 19:37:29 · 791 阅读 · 0 评论