自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 弗洛伊德算法

#define _CRT_SECURE_NO_WARNINGS#include<iostream>using namespace std;#define max 32667int Path[100][100];int Distance[100][100];struct AMGraph{ char m_vexname[100]; int m_vexNum; int m_arcNum; int m_arcweight[100][100];};in

2021-12-10 19:54:37 366

原创 地杰斯特拉算法

#include <bits/stdc++.h>using namespace std;#define max 32767//地杰斯特拉算法// define Distanceint *Distance = new int[100];// define pathint *path = new int[100];// define set of selected vexbool *s = new bool[100];struct AMGraph{ int m_ve

2021-12-10 19:54:04 262

原创 构建哈夫曼树并创建哈弗曼编码

#define _CRT_SECURE_NO_WARNINGS#include<iostream>#include<fstream>#include<string>#include<cstring>using namespace std;#define max 100//define the nodes of hufuman treestruct HTNode{ int m_parent; int m_lchild;

2021-12-02 12:50:59 756

原创 栈链表实现班级人员管理

#define _CRT_SECURE_NO_WARNINGS#include<iostream>#include<fstream>#include<string>using namespace std;struct StudentMessage{ string ClassName; string sex; string StudentName; string StudentID;};struct LinkStackNo

2021-11-11 17:37:56 450

原创 栈队列实现班级人员管理

#define _CRT_SECURE_NO_WARNINGS#include<iostream>#include<string>#include<fstream>#define max 200using namespace std;struct StudentMessage{ string ClassName; string sex; string StudentName; string StudentID;};st

2021-11-11 17:35:50 364

原创 队列顺序表实现班级人员管理

#define _CRT_SECURE_NO_WSRNINGS#include<iostream>#include<string>#include<fstream>using namespace std;#define max 200struct StudentMessage{ string ClassName; string sex; string StudentName; string StudentID;};st

2021-11-11 16:41:46 243

原创 队列链表实现班级管理

#define _CRT_SECURE_NO_WSRNINGS#include<iostream>#include<string>#include<fstream>using namespace std;#define max 100struct StudentMessage{ string ClassName; string sex; string StudentName; string StudentID;};st

2021-11-11 16:23:04 221

原创 判断一定范围内的素数

这里写自定义目录标题欢迎使用Markdown编辑器新的改变功能快捷键合理的创建标题,有助于目录的生成如何改变文本的样式插入链接与图片如何插入一段漂亮的代码片生成一个适合你的列表创建一个表格设定内容居中、居左、居右SmartyPants创建一个自定义列表如何创建一个注脚注释也是必不可少的KaTeX数学公式新的甘特图功能,丰富你的文章UML 图表FLowchart流程图导出与导入导出导入欢迎使用Markdown编辑器你好! 这是你第一次使用 Markdown编辑器 所展示的欢迎页。如果你想学习如何使用Mar

2021-06-06 15:56:04 410 1

空空如也

空空如也

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

TA关注的人

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