- 博客(3)
- 收藏
- 关注
原创 图的邻接表存储(c语言实现)
#include<stdio.h>#include<stdlib.h>#define Maxsize 10typedef int Datatype;typedef struct Arcnode{ int adjvex ; struct Arcnode *next;}Arconde;typedef struct vernode{ Datatype vertex; Arcnode *firstedge;}Vernode;typedef struct Al.
2020-12-28 20:11:20
1219
2
原创 c语言描述数据结构,图的存储及遍历(矩阵/邻接矩阵;深度/广度优先遍历)
#include<stdio.h>#include<stdlib.h>#define Maxsize 10typedef int DataType;typedef struct Graph{ DataType vertex[Maxsize]; //数组v存放顶点信息 int arc[Maxsize][Maxsize]; //arc数组存放边信息 int n,e; //n个顶点,e条边 }MG;typedef struct SeqQ{.
2020-12-13 13:17:11
744
1
原创 vue-admin根据用户级别(权限)过滤路由
使用的是vue-admin基础版本,所以使用者要对登录过滤等流程相当熟悉//登录界面 src/views/login/index.vue<el-button :loading="loading" type="primary" style="width:100%;margin-bottom:30px;" @click.native.prevent="handleLogin">Login</el-button>//登录方法 handleLogin() { this.
2020-10-06 19:26:03
1233
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅