码迷,mamicode.com
首页 >  
搜索关键字:bcv std    ( 41629个结果
hdu 1213 How Many Tables
http://acm.hdu.edu.cn/showproblem.php?pid=1213 1 #include 2 #include 3 #include 4 #define maxn 2000 5 using namespace std; 6 7 int f[maxn],n,m; 8 ...
分类:其他好文   时间:2014-05-08 10:10:44    阅读次数:308
const
#include#includeusing namespace std;int main(){ const int N=100; int const N=100; //二者等价 int mark=0; //1 int* ref_mark=&mark; int* c...
分类:其他好文   时间:2014-05-08 10:02:04    阅读次数:205
template(1)
#include#includetemplateinline T const& max(T const& a,T const &b){ //如果a<b,那么返回a return a<b?b:a;}int main(){ int i=42; std::cout<<"max(7,...
分类:其他好文   时间:2014-05-08 09:50:44    阅读次数:264
c++怎么将一个类,拆分出接口类,和实现类
还拿上一遍中定义的GradeBook类来实现:#include using std::cout;using std::endl;#include // program uses C++ standard string class.using std::string;#include // Grad....
分类:编程语言   时间:2014-05-08 09:26:06    阅读次数:489
十一周 项目2 职员有薪水了 扩展
#include #include using namespace std; class CPerson { protected: char *m_szName; char *m_szId; int m_nSex;//0:women,1:man int m_nAge; public: CPerson(char *name,char *id,int sex,int age); voi...
分类:其他好文   时间:2014-05-08 08:15:08    阅读次数:250
十一周 项目4 类族的设计
#include #include using namespace std; class Point { public: Point(double x=0,double y=0); void setPoint(double,double); double getx() { return x; } double gety() ...
分类:其他好文   时间:2014-05-08 04:44:47    阅读次数:237
链队列的C++实现
#include using namespace std; //节点类 template struct QNode { T data; QNode *next; }; //队列类 template struct LinkList { QNode * front; QNode * rear; size_t size; }; //构造一个空队列 template void InitQueu...
分类:编程语言   时间:2014-05-08 03:48:19    阅读次数:346
定积分解法
定义了一个基类的指针,通过基类操纵派生类,初始化派生类对象。。粤粤大神教我的。。嘻嘻。。。 代码如下: #include #include #include using namespace std; void menu1() // 选择积分函数功能菜单 { cout<<" 请 选 择 被 积 函 数"<<endl; cout<<"\n...
分类:其他好文   时间:2014-05-08 03:46:23    阅读次数:289
十一周 项目4 类族的设计 完整版
#include #include using namespace std; class Point { public: Point(double x=0,double y=0); void setPoint(double,double); double getx() { return x; } double gety() ...
分类:其他好文   时间:2014-05-08 03:42:17    阅读次数:273
poj 2559 DP
两种解法。 我想到的是最大的矩形,中间一定有个最矮的某个单位矩形,所以用两个数组记录任何一个单位矩形histogram[i]左右两边第一个比它小的单位矩形的序号,这里找的时候用DP加速。 #include using namespace std; //the histogram stored from left to right long histogram[100001]...
分类:其他好文   时间:2014-05-08 01:59:37    阅读次数:443
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!