You are my brother (C++代码) 摘要:解题思路:有点像并查集,但是这道题更简单,用数组形式表示树,然后比较深度即可。注意事项:参考代码:#include<iostream> using namespace std; int p[200…… 题解列表 2019年04月09日 0 点赞 0 评论 463 浏览 评分:9.9
You are my brother (C语言代码) 摘要:解题思路:贴个代码 不想写注释了注意事项:参考代码:#include<stdio.h>typedef struct node{ int a; int b;} L;L A[1005];int main(…… 题解列表 2019年04月18日 0 点赞 0 评论 675 浏览 评分:9.9