摘要:
测试链接:https://www.luogu.com.cn/problem/P2330 结论 最小生成树一定是最小瓶颈树 题解 #include <bits/stdc++.h> using namespace std; const int N=1e4+10; typedef long long ll 阅读全文
摘要:
Kruskal 思想:贪心+并查集 #include <bits/stdc++.h> using namespace std; const int N=5e3+10; const int M=2e5+10; typedef long long ll; int n,m; struct edge { i 阅读全文
摘要:
基本介绍 数据库管理系统 DBMS 是一种软件系统,它使用户和应用程序能够方便、高效、安全地创建、访问、管理和控制数据库 关联式数据库(SQL) MySQL Oracle PostgreSQL SQL Server 非关联式数据库(noSQL/not just SQL) MogoDB Redis D 阅读全文