数据结构
小明t
人总要有个伟大的梦想
展开
-
进制转换栈的实现
//顺序栈的定义#define STACK_INIT_SIZE 100;#define STACKINCREAMENT 10;typedef struct{int *base;int *top;int stacksize;}SqStack;//构建一个空栈Status InitStack(SqStack &S){S.base = (int *)malloc(原创 2016-10-11 17:47:30 · 253 阅读 · 0 评论 -
队列的使用
//队列的链式存储结构typedef struct QNode{ int data; struct QNode *next;}QNode,*QueuePtr;typedef struct{ QueuePtr front; QueuePtr rear;}LinkQueue;//初始化队列Status InitQueue(LinkQueu原创 2016-11-06 20:34:54 · 214 阅读 · 0 评论 -
交换法排序
//交换法排序#include#define N 10void Sort(int s[]){ for(int i=0;i for(int j=i+1;j if(s[j] int c; c=s[j];原创 2016-12-13 10:34:42 · 464 阅读 · 0 评论