自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 数据结构—栈(链式存储)

分为:顺序存储和链式存储链式存储:struct.h:#ifndef _STRUCT_H #define _STRUCT_H #include<stdio.h> #include<stdbool.h> #include<stdlib.h> typedef struct infonode { int a; struct infon...

2018-03-13 15:30:50 129

原创 数据结构 —栈(顺序存储)

分为:顺序存储和链式存储顺序存储:struct.h:#ifndef _STRUCT_H #define _STRUCT_H #include<stdio.h> #include<stdlib.h> #include<stdbool.h> #define SIZE 10 typedef struct infonode{ int a[SIZE]...

2018-03-13 15:20:40 153

原创 数据结构—单向链表

struct.h#ifndef _STRUCT_H #define _STRUCT_H #include<stdio.h> #include<stdlib.h> #include<stdbool.h> typedef struct infonode{ int data; struct infonode *next...

2018-03-14 09:36:42 123

原创 数据结构—队(链式存储)

链式存储:struct.h #ifndef _STURCT_H #define _STRUCT_H #include<stdio.h> #include<stdlib.h> #include<stdbool.h> typedef struct queuenode{ int data; struct queue...

2018-03-13 19:32:26 126

原创 数据结构—队(顺序存储)

顺序存储:struct.h#ifndef _STRUCT_H #define _STRUCT_H #include<stdio.h> #include<stdlib.h> #include<stdbool.h> #define SIZE 10 typedef struct infonode{ int a[SIZE]; int...

2018-03-13 19:27:13 246

空空如也

空空如也

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

TA关注的人

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