自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(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

原创 Queue

queue

2017-12-21 17:06:38 199

原创 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

原创 list

list

2017-12-15 15:26:58 221

原创 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关注的人

提示
确定要删除当前文章?
取消 删除