nullptr
-
单例以及模板类的静态成员变量的生命周期
我们有如下的单例设计模式的实现: template <typename T> class OnceSingle { public: OnceSingle() = del…
-
1- ? str::tr1、variadic templates、nullptr、auto
1、str::tr1命名空间 其中包括shared_ptr和regex,他们都被搬到str命名空间中了 2、https://isocpp.org/blog/2014/03/co…
-
1- ? str::tr1、variadic templates、nullptr、auto
1、str::tr1命名空间 其中包括shared_ptr和regex,他们都被搬到str命名空间中了 2、https://isocpp.org/blog/2014/03/co…
-
力扣 题目99- 验证二叉搜索树
题目 题解 在力扣 题目98- 验证二叉搜索树中 我们知道了 中序遍历后的二叉搜索树 应该为递增 那么出错就应该是有部分递减 那么我们在98题的基础上 反向检测 保存减少数列的开头…
-
LeetCode 226 Invert Binary Tree DFS
Given the root of a binary tree, invert the tree, and return its root. Solution: 直接使用 /(DF…
-
二叉树的下一个节点
二叉树的下一个节点 给定一棵二叉树的其中一个节点,请找出中序遍历序列的下一个节点。 注意: 如果给定的节点是中序遍历序列的最后一个,则返回空节点; 二叉树一定不为空,且给定的节点一…