题解列表

筛选

字符串的输入输出处理

摘要:#include #include#includeusing namespace std; int main() {     int n;char str[1000];    cin>>n……
优质题解

✔✔✔ 树的直径问题+DFS求解 [c++]

摘要:典型的**树的直径**问题:图中所有最短路径的最大值即为「直径」,可以用两次 DFS 或者树形 DP 的方法在 O(n) 时间求出树的直径。 题解以两遍DFS为例 **定理:**在一个连通无向无环……

字符逆序cin.get(str,100);

摘要:#include#includeusing namespace std;int main(){    char str[100];    cin.get(str,100);//gets(str);  ……

蓝桥杯Huffuman树

摘要:import java.util.Arrays; import java.util.Scanner; public class tHuffuman { public stat……

一群奶牛的故事

摘要:参考代码:import java.util.Scanner;public class Test3 {    public static void main(String[] args) {   Sca……