摘要: 数据结构实验之排序四:寻找大富翁 Code: 1 #include <bits/stdc++.h> 2 using namespace std; 3 const int maxn = 1010; 4 const int minn = -10001; 5 6 int a[25]; 7 int n,m; 阅读全文
posted @ 2020-11-27 12:47 swsyya 阅读(215) 评论(0) 推荐(0)
摘要: 堆中的路径 AC_Code: 1 #include <bits/stdc++.h> 2 using namespace std; 3 const int maxn = 1010; 4 const int minn = -10001; 5 6 int Heap[maxn]; 7 int _size; 阅读全文
posted @ 2020-11-27 12:17 swsyya 阅读(102) 评论(0) 推荐(0)
摘要: 二叉搜索树的操作集 总代码: 1 #include <bits/stdc++.h> 2 using namespace std; 3 4 5 typedef int ElementType; 6 typedef struct TNode *Position; 7 typedef Position B 阅读全文
posted @ 2020-11-27 11:53 swsyya 阅读(93) 评论(0) 推荐(0)

回到顶部