摘要: 1 #include <bits/stdc++.h> 2 using namespace std; 3 typedef long long ll; 4 5 const int N=1005; 6 7 int D; 8 9 int G[N][N]; 10 11 int n,m,s; 12 13 ll 阅读全文
posted @ 2020-11-20 17:32 Venux 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 1 #include <bits/stdc++.h> 2 using namespace std; 3 typedef int ElemType; 4 5 typedef struct Node{ 6 ElemType data; 7 Node* lson; 8 Node* rson; 9 Node 阅读全文
posted @ 2020-11-20 16:24 Venux 阅读(477) 评论(0) 推荐(0) 编辑
摘要: 1 #include <bits/stdc++.h> 2 using namespace std; 3 typedef char ElemType; 4 5 typedef struct BiNode{ 6 ElemType data; 7 BiNode* lchild; 8 BiNode* rch 阅读全文
posted @ 2020-11-20 13:28 Venux 阅读(112) 评论(0) 推荐(0) 编辑