码迷,mamicode.com
首页 >  
搜索关键字:bcv std    ( 41629个结果
HDU - 4135 Co-prime
题意:求[a,b]与n互质的个数 思路:容斥原理的运用,提取n的素因子,先算出不与n互素的个数,容斥原理奇加偶减 #include #include #include #include #define ll long long using namespace std; const int MAXN = 70; ll prime[MAXN]; ll a,b,n; ll make(l...
分类:其他好文   时间:2014-07-22 23:05:55    阅读次数:315
C++ Daily 《4》----一个简单的 int to string 的方法
经常会在项目中用到 int to string #include #include #include using namespace std; int main(void) { ostringstream num; num << 123; string str = num.str(); cout << str << endl; return 0; }...
分类:编程语言   时间:2014-07-22 23:04:54    阅读次数:283
BNUOJ 34978 汉诺塔
提交以后比赛结束了25秒,没交上,不解释其他的。 #include #include #include #include #include #include #include #include #include #include #include #define INF 0x3fffffff #include using namespace std; int main() { int t...
分类:其他好文   时间:2014-07-22 23:02:54    阅读次数:211
精简Linux文件路径
精简Linux的文件路径: ..回退的功能.留在当前目录//只保留一个/abc/..要返回.报错删除最后一个/ 主要思路: 用栈记录路径的起始位置,讨论/后的不同情况即可: #include #include #include #include #include #include using namespace std; int selectK(int num[]...
分类:系统相关   时间:2014-07-22 23:01:32    阅读次数:384
博客测试
#include #include using namespace std; struct BTNode { int v; // default positive Integer. BTNode *pLeft; BTNode *pRight; BTNode(int x) : v(x), pLeft(...
分类:其他好文   时间:2014-07-22 23:00:54    阅读次数:294
inherited在消息中的作用
好奇一下。看来Object Pascal确实与Windows深入结合了。unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, Std.....
分类:其他好文   时间:2014-05-02 00:02:51    阅读次数:275
C++ Primer 学习笔记_52_类与数据抽象 --构造函数【下】
类--构造函数【下】二、默认实参与构造函数一个重载构造函数: Sales_item():units_sold(0),revenue(0){} Sales_item(const std::string &book): isbn(book),units_sold(0),revenue(0) {} 可以通过给string初始化式提供一个默认实参将这些构造函数组合起来: ...
分类:编程语言   时间:2014-05-01 08:17:52    阅读次数:386
C++ Primer 学习笔记_51_类与数据抽象 --构造函数【上】
类--构造函数【上】引言:    构造函数确保每个对象在创建时自动调用,以确保每个对象的数据成员都有合适的初始值。class Sales_item { public: //其中isbn由string的默认构造函数提供初始化 Sales_item():units_sold(0),revenue(0){} private: std::string isbn; unsi...
分类:编程语言   时间:2014-04-30 22:48:40    阅读次数:347
Cocos2d3.0 画折线图
实现用2dx画折线图,为以后用2dx开发应用做准备 下面记录下使用方法 auto lineView = DJLineChart::create(); std::vector vec; vec.push_back(130); vec.push_back(520); vec.push_back(60); vec.push_back(0);...
分类:其他好文   时间:2014-04-30 22:47:39    阅读次数:322
C++类的详细介绍
#include "iostream" using namespace std; //class 关键字 //Circle 是类的名字 class Circle { int m_age;//什么都不加 默认为private; private: //private 修饰的成员变量和成员函数,只能在类的内部使用; double xiaosi; //私有成员属性,...
分类:编程语言   时间:2014-04-30 22:45:39    阅读次数:313
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!