自定义博客皮肤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 #include #include #define TRUE 0 #define FALSE 1 #define SElemType int #define Status int #define STACK_INIT_SIZE 100 #define OVERFLOW 1 #define OK 0 #define STACKINCREMENT 10 #def

2016-10-19 17:47:24 228

原创 栈的生成,进栈,出栈指令

#include #include #include #define ElemType int #define stacksizemax 100 #define increase 10 #define OK 0 #define ERROR 1 #define OVERFLOW 1 typedef struct {     ElemType *top;     ElemTyp

2016-10-15 16:33:31 2967

原创 顺序表的生成、初始化、插入、删除

顺序表 #include #include #define MAXSIZE 100 #define OK 1 typedef int datatype;          //定义datatype的类型 typedef struct                {                       datatype a[MAXSIZE];             

2016-10-13 19:14:14 997

原创 双向链表的生成,删除,插入

双向链表的生成,删除,插入 #include #include struct s {     int a;     struct s *next;     struct s *prior; }; int main() {     struct s*head,*p,*q,*j,*s,*k;/*head为头结点,q为开头尾节点 创建链表时使用,j为遍历列表 读取数据时使用,s

2016-10-10 17:47:41 293

原创 单链表的插入和删除

单链表的插入和删除 #include #include #include #include struct s {     int a;     struct s*next; }; int main() {     //srand(time(0));//随机数种子的使用但这里没使用     struct s *p,*head,*q;     head=(struct s

2016-10-09 21:12:35 567

原创 循环列表的建立

循环列表及输出 #include #include struct s {     int date;     struct s *next; };//定义结点 int main() {     struct s *p,*head,*q;     head=(struct s *)malloc(sizeof(struct s));     head->date=11;//定义

2016-10-09 19:27:38 666

原创 链表的建立

头插法和尾插法建立链表 #include #include struct s {     int a;     struct s*next; }; int main() {     struct s*head,*q,*p,*l,*s;     //头插法     head=(structs *)malloc(sizeof(struct s));//创建头结点    hea

2016-10-08 19:53:03 217

空空如也

空空如也

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

TA关注的人

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