- 博客(7)
- 收藏
- 关注
转载 数据结构实验7 建立邻接表
实验七 图的存储结构 一、实验目的 掌握图的邻接表与邻接矩阵的存储表示方法 二、实验内容 图的存储结构主要有图的数组(邻接矩阵)表示法、图的邻接表表示法、有向图的十字链表和无向图的邻接多重表。其中图的数组(邻接矩阵)表示法和图的邻接表表示法都适用于有向图和无向图。本次实验完成图的邻接表和图的邻接矩阵存储表示。 三、实验内容准备 了解图的邻接表存储表示的概念和建立邻接表的方法。
2017-11-24 11:02:36
1708
转载 数据结构实验6 树的遍历
#include #include #include #include #include #define m 3 #define MAXLEN 100 typedef char datatype; typedef struct node { datatype data; struct node *child[m]; } node; typedef node *t
2017-11-17 10:42:48
908
转载 欢迎使用优快云-markdown编辑器
include include using namespace std; const int MAXN=20; const int M=2; const int N=3; const int L=4;double a[MAXN][MAXN],b[MAXN][MAXN];double muti(int i,int j) { int sum=0; for(int k=0;
2017-11-14 09:34:46
200
原创 计算方法实验二实验报告 非线性方程求根
实验要求用六种计算方式计算非线性方程的根 废话不多说 代码如下 #include #include #include using namespace std; const double eps=1e-10; const int MAXN=2000; /*double f(double x) { return x*x*x-3*x-1; }*/
2017-11-14 09:32:43
2748
转载 uva 10820 紫书欧拉函数题目
#include #include #include using namespace std; const int maxn=50000+5; int phi[maxn]; void phi_table(int n,int* phi) { memset(phi,0,sizeof(phi)); phi[1]=1; for(int i=2; i
2017-11-09 22:17:05
209
转载 计算几何入门的几个模板
//向量常用定义 #include #include #include using namespace std; //定义部分 struct point { double x,y; point(double x=0,double y=0):x(x),y(y) {} //构造函数方便编写 }; typedef point Vector; Vect
2017-08-17 16:39:05
289
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人