10 2014 档案
摘要:简单实现数据结构之循环队列#include #include #include #define OK 1#define FALSE 0#define ERROR -1#define OVERFLOW -2#define TRUE 1#define FALSE 0using namespace st...
阅读全文
摘要:简单实现数据结构队列#include #include #include #include #define OK 1#define OVERFLOW -1#define ERROR -1#define TRUE 1#define FALSE 0using namespace std;struct...
阅读全文
摘要:简单实现单链表操作!#include #include #include #include using namespace std;typedef struct Lnode{ int data; struct Lnode *next;}Lnode, *Linklist;//初始...
阅读全文
摘要:简单的实现以下栈的数据结构: #include #include #include #include typedef struct Stack{ int *Base; int Top; int Size;}Sqstack;const int Const_size = 20;usi...
阅读全文

浙公网安备 33010602011771号