BananaAllergyMonkey
BananaAllergyMonkey
全部文章
分类
未归档(5)
读书笔记(2)
归档
标签
去牛客网
登录
/
注册
BananaAllergyMonkey
燃烧我的卡路里
全部文章
(共7篇)
迪杰斯特拉算法-求图的最小路径
#include<iostream> #include<vector> using namespace std; void shortestPath(vector<vector<int> > &matrix,int n){ vecto...
2019-09-15
0
687
c++ static关键字的作用
https://blog.csdn.net/googler_offer/article/details/82933280 1.static修饰局部变量(非类内)的时候 生命周期与整个程序的生命周期一致 未赋初值时自动设为0 2.修饰全局变量 未被static修饰时,在一个文件中定义了一个全局变...
2019-09-14
0
838
const_cast和static_cast的使用
对于如下代码 class A{ public: const char& openrator[](size_t position) const{ //... return text[position]; } char& o...
2019-09-13
0
0
explicit关键字的作用
class A{ public: A(); }; class B{ public: explicit B(int x = 0,bool b = true); }; void doSomething(B bObject){ //... }; doSomething(28)...
2019-09-13
0
767
二叉树中序遍历-迭代版
2019-09-12
0
628
先序遍历二叉树-迭代法
template <typename T, typename VST> //元素类型、操作器 static void visitAlongLeftBranch(BinNodePosi(T) x, VST& visit, Stack<BinNodePosi(T)>&am...
2019-09-12
0
639
c++实现堆排序
#include<iostream> #include<vector> using namespace std; void maxHeep(vector<int> &list, int begin, int end){ int dad = beg...
2019-08-30
0
622