剑指offer
然后就去远行吧
我们的目标是星辰大海~
展开
-
剑指offer——面试题7.重建二叉树代码和try and catch的使用
#include <iostream> #include<vector> #include<math.h> #include<exception> using namespace std; struct BinaryTreeNode{ int value; BinaryTreeNode* m_pleft; BinaryTr...原创 2020-02-24 17:21:38 · 129 阅读 · 0 评论 -
C++中,有哪4种与类型转换相关的关键字?各有什么特点?应该在什么场合下使用?
C++中,有哪4种与类型转换相关的关键字?各有什么特点?应该在什么场合下使用? ———————————————————————————————————————————— 本文转自https://www.cnblogs.com/mjiang2017/p/9358032.html ———————————————————————————————————————————— C++中,四个与类型转换相关的关...转载 2019-08-28 01:16:11 · 142 阅读 · 0 评论