编写题解 1592: 蓝桥杯算法训练VIP-FBI树(有图理解) 摘要:解题思路:这里题目中的例子'10001011',函数f(l,r)用于递归建数比如f(a,b)表示字符串第a到第b个([a,b])的这个部分用于建树,具体看图注意事项:我写题的时候瞎画的…… 题解列表 2021年04月08日 0 点赞 0 评论 464 浏览 评分:9.9
1592: 蓝桥杯算法训练VIP-FBI树 摘要:[https://www.dotcpp.com/oj/problem1592.html](https://www.dotcpp.com/oj/problem1592.html) - 思路 …… 题解列表 2022年03月12日 0 点赞 0 评论 202 浏览 评分:9.9
FBI树【python】【顺序存储二叉树解法】 摘要:解题思路:顺序存储二叉树注意事项:参考代码: n=int(input()) s=input().strip() tree=['']*100000 # 存储每个节点的子串 …… 题解列表 2021年04月17日 0 点赞 0 评论 299 浏览 评分: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树-题解(Java代码) 摘要:```java import java.util.Scanner; import java.util.Arrays; //借鉴 https://blog.csdn.net/liuchuo/art…… 题解列表 2020年02月18日 0 点赞 0 评论 510 浏览 评分:9.9
蓝桥杯算法训练VIP-FBI树C++超简单题解 摘要:**模拟线段树的建树过程,然后前序遍历即可** ```cpp #include using namespace std; const int N = 5100; struct Node {…… 题解列表 2020年07月14日 0 点赞 0 评论 411 浏览 评分:9.9
python-FBI树(dfs) 摘要:解题思路:注意事项:参考代码:def dfs(s): global R R.append(s) if  题解列表 2022年03月06日 0 点赞 0 评论 240 浏览 评分:9.9
蓝桥杯算法训练VIP-FBI树-题解(C语言代码) 摘要:```c #include #include #include int cnt; typedef struct TreeNode { char s[1025]; struct…… 题解列表 2020年02月14日 0 点赞 0 评论 543 浏览 评分:9.9
蓝桥杯 FBI树 DFS 摘要:# FBI 树 DFS (C++) 描述 ## 1. 思想 也不必构建二叉树,在 字符串上 搜索即可 ## 2. 完成代码 (AC) ```cpp // // Created b…… 题解列表 2020年02月29日 0 点赞 0 评论 473 浏览 评分:9.9
菜鸡的题解010——FBI树 摘要:常规的后序遍历,用DFS即可解决,本题的坑在于(不知道是网站的坑还是考试中会出现的,有一组数据的第一行后面加了一个空格)用getchar()读取字符时可能读取到空格和回车,所以我加了一个while语句…… 题解列表 2021年04月15日 0 点赞 0 评论 172 浏览 评分:0.0