自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 资源 (2)
  • 收藏
  • 关注

原创 数据结构试验7.5 图

#include <stdio.h> #include "stdlib.h" #define vertexnum 10 typedef struct node{ int vertex; struct node *next; }*graph; struct node head[vertexnum]; int visited[vertexnum]; int path[50...

2019-06-17 18:12:18 219

原创 深度优先搜索

#include <stdio.h> #include "stdlib.h" #define vertexnum 10 typedef struct node{ int vertex; struct node *next; }*graph; struct node head[vertexnum]; int visited[vertexnum]; //以邻接表形式存储...

2019-06-17 11:41:39 138

原创 Sort 总结

#include <stdio.h> #include <stdlib.h> /*排序算法大致过一遍 * */ void Swap(int *ar,int i,int j){ int temp; temp = ar[i]; ar[i] = ar[j]; ar[j] = temp; } void Show(int *ar,int size...

2019-06-17 11:40:48 199

计算机考研数据结构代码总结.zip

覆盖考研数据结构各章节经典题目代码 + 代码模板 图的内容依然丰富 适用于期末复习+考研数据结构背诵

2021-02-19

计算机408考研复习笔记

数据结构+组成原理+操作系统+计网 适用于期末复习 考研总结

2021-02-19

空空如也

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

TA关注的人

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