菜鸡的题解010——FBI树 摘要:常规的后序遍历,用DFS即可解决,本题的坑在于(不知道是网站的坑还是考试中会出现的,有一组数据的第一行后面加了一个空格)用getchar()读取字符时可能读取到空格和回车,所以我加了一个while语句…… 题解列表 2021年04月15日 0 点赞 0 评论 172 浏览 评分:0.0
蓝桥杯算法训练VIP-FBI树C++超简单题解 摘要:**模拟线段树的建树过程,然后前序遍历即可** ```cpp #include using namespace std; const int N = 5100; struct Node {…… 题解列表 2020年07月14日 0 点赞 0 评论 411 浏览 评分:9.9
蓝桥杯 FBI树 DFS 摘要:# FBI 树 DFS (C++) 描述 ## 1. 思想 也不必构建二叉树,在 字符串上 搜索即可 ## 2. 完成代码 (AC) ```cpp // // Created b…… 题解列表 2020年02月29日 0 点赞 0 评论 473 浏览 评分:9.9
又是一道坑人的题,题目描述又是错的 摘要:题目是错的,不是2N是2的N次方 ```cpp #include #include #include using namespace std; int n; string s; …… 题解列表 2019年10月11日 0 点赞 3 评论 694 浏览 评分:9.9
蓝桥杯算法训练VIP-FBI树 (C++代码) 摘要:解题思路:注意事项:参考代码:不解释了#include<cstdio> #include<string> #include<iostream> using namespace std; int…… 题解列表 2018年02月04日 0 点赞 0 评论 1006 浏览 评分:0.0