码迷,mamicode.com
首页 >  
搜索关键字:binary tree    ( 23211个结果
[CF1223E] Paint the Tree - 树形dp
## [CF1223E] Paint the Tree - 树形dp ### Description 在树上选取一些边,保证没有点度超过 k,求最大边权和 ### Solution 用 $f[i][0/1]$ 表示处理了 i 的子树,i 的度小于等于 k 或 k-1 时的最大答案 注意在跳过边权 < ...
分类:其他好文   时间:2021-02-19 12:59:37    阅读次数:0
103. Binary Tree Zigzag Level Order Traversal
仅供自己学习 思路: 前面做过102,题目几乎相同,只是输出的方式不同,下意识BFS就选择了队列,但是发现不能解决,因为是单向取单向入得结构,不能从满足一左一右的输出形式。上课的时候了解到一个双端队列,刚好可以满足,只需要一个标记此时是左输出还是右输出即可。当时只想用一个双端队列即可,但是发现写着还 ...
分类:其他好文   时间:2021-02-18 13:57:19    阅读次数:0
linux下安装lua
#!/bin/bashyum install -y readline-devel ncurses-develyum install -y vim make telnet lsof tree rdate ntp gcc gcc-c++ psmisc net-tools \screen expect s ...
分类:系统相关   时间:2021-02-18 13:45:26    阅读次数:0
树的子结构*
struct BinaryTreeNode { int m_nValue; BinaryTreeNode* m_pLeft; BinaryTreeNode* m_pRight; }; bool HasSubTree(BinaryTreeNode* pRoot1, BinaryTreeNode* pR ...
分类:其他好文   时间:2021-02-18 13:43:33    阅读次数:0
Codechef February Challenge 2021 Division 1 部分题解
Team Name 留坑。 Prime Game 留坑。 XOR Sums 留坑。 Multiple Games 留坑。 Another Tree with Numb 留坑。 Bash Matrix 留坑。 Cell Shell 留坑。 Cut the Cake (Challenge) 留坑。 Dr ...
分类:其他好文   时间:2021-02-18 13:09:23    阅读次数:0
二叉树的最近公共祖先--递归解法
来源: https://leetcode-cn.com/problems/lowest-common-ancestor-of-a-binary-tree/solution/er-cha-shu-de-zui-jin-gong-gong-zu-xian-by-leetc-2/ 信息分类: IT/算法 ...
分类:其他好文   时间:2021-02-17 14:40:10    阅读次数:0
LevelDB基于LSM Tree的相关设计
目录 目录LSMTree基本特性LevelDB基于LSMTree整体架构MemTable和Immutable MemTableSSTable和压实(compaction)SSTable的读Manifest文件current 文件参考文献toc LSMTree基本特性 LSM Tree(Log-Str ...
分类:数据库   时间:2021-02-17 14:19:17    阅读次数:0
1135 Is It A Red-Black Tree (30 分)
思路:在建树的同时进行判断,把建树的模板改一改就能用 #include<iostream> #include<queue> #include<string.h> #include<string> #include<map> #include<unordered_map> #include<vecto ...
分类:其他好文   时间:2021-02-17 14:00:40    阅读次数:0
PAT A1119 Pre- and Post-order Traversals (30 分)
Suppose that all the keys in a binary tree are distinct positive integers. A unique binary tree can be determined by a given pair of postorder and ino ...
分类:其他好文   时间:2021-02-16 12:28:45    阅读次数:0
[CF1401D] Maximum Distributed Tree - 贪心
给定一棵树,构造正整数边权,使得所有边权的乘积为 k,且边权为 1 的边数量最小,在此基础上,使得所有简单路径权值总和最大。 ...
分类:其他好文   时间:2021-02-16 12:10:00    阅读次数:0
23211条   上一页 1 ... 17 18 19 20 21 ... 2322 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!