- 博客(7)
- 收藏
- 关注
原创 快速排序
#include void QuickSort(int *a,int low,int high); int FindPos(int *a,int low,int high); int main(void) { int a[6]={-2,1,0,-985,4,-93}; QuickSort(a,0,5);//第二个参数表示第一个元素下标 第三个参数表示最后一个元素的下标 for(int i=
2018-01-06 20:44:39 188
原创 BTNode
#include #include struct BTNode{ char data; struct BTNode *pLchild;//p是指针 L是左 child是孩子 struct BTNode *pRchild;//p是指针 R是右 child是孩子 }; struct BTNode *CreateBTree(void); void PreTraverseBTree(struct
2017-12-27 14:18:00 5289
原创 hannuota
#include void hannuota(int n,char A,char B,char C); int main(void){ char ch1='A'; char ch2='B'; char ch3='C'; int n; printf("请输入要移动盘子的个数:"); scanf("%d",&n); hannuota(n,'A','B','C'); return 0;
2017-12-23 04:44:58 209
原创 stack
#include #include #include typedef struct Node{ int date; struct Node *pNext; }NODE,* PNODE; typedef struct Stack{ PNODE pTop; PNODE pBottom; }STACK,* PSTACK;//PSTACK等价于 struct Stack* void init(P
2017-12-17 15:06:10 316
原创 Arr
#include #include #include//包含了exit函数 //定义了一个数据类型,改数据结构的名字叫做struct Arr ,该数据类型包含三个成员 ,分别为pBase, len, cnt struct Arr { int *pBase;//存储的是数组第一个元素的收地址 int len;//数组所能容纳的最大元素的个数 int cnt;//当前数组有效元素的个数
2017-12-11 14:45:43 269
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人