Chri_K

2020年11月5日

进制转换

摘要: m进制转十进制 #include<cstdio> #include<iostream> #include<cstdlib> #include<cstring> char a[10000]; using namespace std; int main() { int n,m; int f=0; sca 阅读全文

posted @ 2020-11-05 16:33 Chri_K 阅读(72) 评论(0) 推荐(0) 编辑
dijkstra

摘要: #include<iostream> #include<algorithm> #include<cstring> using namespace std; const int N=510; int g[N][N]; //为稠密阵所以用邻接矩阵存储 int dist[N]; //用于记录每一个点距离第 阅读全文

posted @ 2020-11-05 15:43 Chri_K 阅读(63) 评论(0) 推荐(0) 编辑