摘要: Getting Started with Python in VS Code 安装Python Extension Python 选择一个Python解释器 2.1. 界面左下角左键点击选择一个Python解释器 2.2. ctrl+shift+P,type Python: Select Inter 阅读全文
posted @ 2021-09-14 23:20 Rekord 阅读(60) 评论(0) 推荐(0) 编辑
摘要: FBI树 在递归前序遍历的基础上加上一些操作即可。 #include<iostream> #include<cstring> #include<cmath> using namespace std; string s; void solve(int l,int r){ int h_1=s.subst 阅读全文
posted @ 2021-09-14 19:34 Rekord 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 小球 由于是完全二叉树,所以可以使用数组对整棵树进行表示。 暴力遍历所有小球的下落。 #include<iostream> #include<cstring> #include<cmath> using namespace std; const int N=1e6; int a[N]; int ma 阅读全文
posted @ 2021-09-14 17:49 Rekord 阅读(570) 评论(0) 推荐(0) 编辑
摘要: 求后序遍历 先序遍历总是从根节点开始;而中序遍历则以根节点为界,将左右结点分为左右子树(前提是要确定树的范围)。 先序遍历当前节点的位置加上该节点左子树节点的个数(可从中序遍历求得),就进入该节点右子树的范畴。 #include<iostream> #include<cstring> using n 阅读全文
posted @ 2021-09-14 17:23 Rekord 阅读(418) 评论(0) 推荐(0) 编辑
摘要: 扩展二叉树 通过给定的先序遍历构造整棵树,然后再对这颗树分别中序遍历和后序遍历。 #include<iostream> #include<cstring> using namespace std; typedef struct TreeNode; struct TreeNode { char val 阅读全文
posted @ 2021-09-14 17:21 Rekord 阅读(375) 评论(0) 推荐(0) 编辑