本文分类:news发布日期:2025/11/29 15:02:53
打赏

相关文章

5-5 堆中的路径 (25分)

5-5 堆中的路径 (25分)#include <iostream>using namespace std;int num[1010];void adjustup(int k) {num[0] = num[k];int i = k / 2;while(i > 0 && num[0] < num[i]){num[k] = num[i];k = i;i…

5-11 关键活动 (30分)

5-11 关键活动 (30分)#include <iostream> #include <vector> #include <queue>using namespace std;struct node {int next, time; };int degree[2][110], t[2][110], maxtime; vector<node>…

5-4 是否同一棵二叉搜索树 (25分)

5-4 是否同一棵二叉搜索树 (25分)#include <iostream>using namespace std;struct node {int lchild, rchild, key; }tree1[10], tree2[10];int index = -1;void initnode(node tree[], int root, int key) {tre…

5-10 公路村村通 (30分)

5-10 公路村村通 (30分)#include <iostream> #include <algorithm>using namespace std;struct edge {int a, b, cost; }e[3010];int sum[1010], tree[1010], res;int cmp(edge e1, edge e2) {return e1.c…

手机版浏览

扫一扫体验

微信公众账号

微信扫一扫加关注

返回
顶部