• 2023-01-16PAT第二天
    1004CountingLeaves解题思路:利用深度优先搜索,遍历树#include<iostream>#include<vector>usingnamespacestd;intn,m,maxlevel,numEachleval[100]={0};vector<i
  • 2022-10-25BYSBZ 2748(音量调节-01背包)
    第一题:音量调节(changingsounds)时间限制:1秒空间限制:64MB输入:changingsounds.in输出:changingsounds.out问题描述一个吉他手准备参加一场演出。他不喜欢在演出时始终使
  • 2022-08-17leetcode1302-层数最深叶子节点的和
    层数最深叶子节点的和BFS层序遍历树,返回最后一次计算的结果classSolution{publicintdeepestLeavesSum(TreeNoderoot){List<TreeNode>list=new