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

原创 简单二叉树

#include <stdio.h> #include <stdlib.h> typedef struct Node { int data; struct Node* lchild, *rchild; }Node; Node* init(int data) { Node *node = (Node *)malloc(sizeof(Node)); node->data = data; node->lchild = NULL; .

2021-10-17 14:40:55 54

原创 简单的队列

#include <stdio.h> #include <stdlib.h> #define ERROR 0 #define OK 1 typedef struct Queue{ int *data; int length; int head; int tail; }Queue; void init(Queue *q, int length) { q->length = length; q->data = (int .

2021-09-23 12:37:36 75

原创 c语言简单约瑟夫环

#include <stdio.h> #include <stdlib.h> typedef struct Node{ int data; struct Node *next; }Node, *LinkedList; LinkedList insert(LinkedList head, Node *node, int index) { if (head == NULL) { if (index != 0) { re.

2021-09-19 11:00:51 160

原创 c语言单向链表

#include <stdio.h> #include <stdlib.h> typedef struct Node{ int data; struct Node *next; }Node, *LinkedList; LinkedList insert(LinkedList head, Node *node, int index) { if (head == NULL) { if (index != 0) { pr.

2021-09-19 10:22:36 46

原创 顺序表的实现

#include <stdio.h> #include <stdlib.h> #define ERROR 0 #define OK 1 typedef struct Vector { int length,size; int *data; } Vector; //建立顺序表节点 void init(Vector *vector, int size) { vector->length = 0; vector->size = size;.

2021-08-25 08:40:26 67

空空如也

空空如也

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

TA关注的人

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