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

原创 C语言 B+树

【代码】C语言 B+树。

2023-07-04 19:26:18 282 1

原创 广义表(扩展线性链表的存储结构)

广义表

2022-11-23 22:19:26 466 1

原创 C语言红黑树,增加,删除

红黑树详细注释

2022-06-02 19:37:51 143

原创 线性表的基本操作(顺序表)

#include <stdio.h>#include <stdlib.h>#include <stdbool.h>#include <string.h>#define MAXSIZE 10#define ALPHA 20typedef struct{ char name[ALPHA]; int n;}Item;typedef struct{ Item *item; //指向数据的指针 int len; //个数 }Lis

2021-11-04 15:25:32 106

原创 c语言打字母小游戏

#include <stdio.h>#include <conio.h>#include <stdbool.h>#include <time.h>#include <ctype.h>#include <windows.h>#define WIRD 50#define HIGH 25struct Word{ int x; int y; char ch; bool flag; };int count = 0;

2021-10-24 16:50:30 2083

原创 c语言控制台贪吃蛇

main.c#include <stdio.h>#include "snake.h"char * s_gets(char *st, int n);void start(snake *ps, food *pd, score *ft); //开始游戏 void open(FILE *pf,score *ps,score *pt); // 打开记录文件 void show(FILE *sp,score *ps); //打印排行 void Interface(void); //游戏

2021-10-19 17:07:09 363

原创 《c primer plus》12.9 编程练习 第9题

#include <stdio.h>#include <stdlib.h>#include <string.h>#define NUM 20char ** word(int score);void show(char ** ps, int n);int main(void){int i;char **ch;int score;printf(“你要输入多少个单词: “);while(scanf(”%d”, &score)==1 &&a

2020-12-24 14:25:12 251

空空如也

空空如也

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

TA关注的人

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