- 博客(3)
- 收藏
- 关注
原创 assert 与NDEBUG
assert : (1)头文件:cassert (2)作用:assert(expr) 判断表达是expr的的真伪,伪则打印错误信息,真则不做任何事情。 例子: //#define NDEBUG #include #include using namespace std; int main() { assert(1>2); cout system(
2014-10-10 23:15:57 476
原创 递归输出vecotr
自己写的: #include #include using namespace std; void RecursivePrint(vector &myvec) { vector::size_type imax= myvec.size(); if( imax == 1) { cout return ; } cout vector te
2014-09-28 22:14:18 429
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人