难度:简单 翻译:寻找距离最远的 1 和 -1 的组合,要求它们之间只有0
class Solution:def captureForts(self, forts: List[int]) -> int:res, t 0, -1for i, fort in enumerate(forts):if fort -1 or fort 1:if t > 0 and fort ! f…
687. 最长同值路径 C代码:DFS
int res; // int res 0; 这种初始化有问题int dfs(struct TreeNode* root, int val) {if (root NULL) {return 0;}int left dfs(root->left, root->val);int right dfs(root->right, root->val);res fmax(res, lef…
1、格式 #include <iostream>
using namespace std;const double PI 3.14;//设计一个圆类,求圆的周长
class Circle {//访问权限//公共权限
public://属性//半径int m_r;//行为//获取圆的周长double calculateZC() {return 2 * PI * m_r;}
};int main() {//通…