自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

转载 循环队列的创建和基本操作

1 #include<stdio.h> 2 #define Maxsize 10 3 typedef struct //定义一个循环队列 4 { 5 int data[Maxsize]; 6 int front; 7 int rear; 8 }Squeue; 9 10 void initSqueue(Sq...

2017-12-10 11:50:00 192

转载 后缀表达式的计算

1 #include<stdio.h> 2 #define MAXSIZE 100 3 4 5 double Caculate(double a,char Op,double b) //计算功能函数 6 { 7 if(Op=='+') 8 return a+b; 9 if(Op=='-')10 ...

2017-12-09 21:29:00 89

转载 顺序表的基本操作

1 1 #include<stdio.h> 2 2 #define Maxsize 100 3 3 typedef struct // 定义一个顺序表的结构 4 4 { 5 5 int data[Maxsize]; 6 6 int length; 7 7 }Sqlist; 8 8 ...

2017-12-05 20:15:00 112

转载 单链表的创建和插入删除操作

1 #include<stdio.h>//单链表的定义和基本操作 2 #include<stdlib.h>//malloc函数所需要的头文件 3 #include<stddef.h>//定义NULLL的头文件 4 5 typedef struct LNode//定义单链表的节点 6 { 7 int data;...

2017-12-05 20:13:00 141

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

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