自定义博客皮肤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)
  • 收藏
  • 关注

原创 二叉树的遍历(贼重要)

二叉树的遍历#include <stdio.h>#include <malloc.h>typedef struct BiNode{ char date; //节点数据 struct BiNode *lchild,*rchild;//左右孩子指针}BiNode,*Bitree;void creatBitree(Bitree * T){ char c; scanf("%c",&c);//输入字符 if(c=='#') *T = NULL; //保证

2020-08-27 16:16:13 85

原创 C语言单链表的实现(初始化,malloc,头插,尾插,指定位置插等等)

首先包含头文件#include <stdio.h>#include <stdlib.h> #include <stdbool.h>#include <assert.h>```c //定义节点结构体typedef struct Node{ int date; //数据域 struct Node *next; //指针域}Node ,*Linklist; //*Linklist 的意思是 struct Node * Linklist

2020-06-18 21:51:10 838

原创 1day——初识C语言

2、编写程序打印类型的大小【bool、char、 short、 int 、float 、double、 long、long long】#include<stdio.h>#include<stdlib.h> //system需要的头文件int main(){ printf("%d\n", sizeof(bool)); printf("%d\n", size...

2019-09-20 00:38:40 126

原创 C语言新起点,2019-9-18

岁月未曾绕过我,我亦未曾饶过岁月

2019-09-18 10:59:17 109

空空如也

空空如也

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

TA关注的人

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