摘要: 比如常用的数学常数π就是一个常量。在Python中,通常用全部大写的变量名表示常量: Python支持多种数据类型,在计算机内部,可以把任何数据都看成一个“对象”,而变量就是在程序中用来指向这些数据对象的,对变量赋值就是把数据和变量给关联起来。 对变量赋值x = y是把变量x指向真正的对象,该对象是 阅读全文
posted @ 2018-11-08 23:17 Stretching_cat 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 建议初始化所有变量 如sum 阅读全文
posted @ 2018-06-10 11:41 Stretching_cat 阅读(3553) 评论(0) 推荐(0) 编辑
摘要: vector和list在命名空间std里,还需要添加声明 using namespace std; 阅读全文
posted @ 2018-06-09 11:38 Stretching_cat 阅读(949) 评论(0) 推荐(0) 编辑
摘要: #include<deque> #include<cmath> #include<vector> #include<iostream> using namespace std; template<class T> struct BiNode { T data; BiNode<T>* lchild; 阅读全文
posted @ 2018-05-19 18:37 Stretching_cat 阅读(102) 评论(0) 推荐(0) 编辑