码迷,mamicode.com
首页 >  
搜索关键字:iostream    ( 13291个结果
qt 不识别#include<iostream>
打开qt项目.pro,加上路径:INCLUDEPATH += D:\C++\MinGW\lib\gcc\mingw32\4.6.2\include\c++路劲看自己安装的c++目录了
分类:移动开发   时间:2014-07-17 23:00:20    阅读次数:338
二分图之最小边覆盖(poj3020)
题目:poj3020 题意:给出一个图,让你用最少的1*2的纸片覆盖掉图中的所有*出现过的地方。基本裸的最小边覆盖。 分析: 最小边覆盖 = 点总数 - 最大匹配 所以就是转化为求最大匹配。 跟前面一道题目很相似,也是相同的建图方法,奇偶性建图。 #include #include #include #include #include #inc...
分类:其他好文   时间:2014-07-17 10:21:44    阅读次数:157
c++ boost库学习一:时间和日期
timer类#include #include "iostream"using namespace std;int _tmain(int argc, _TCHAR* argv[]){ boost::timer t; coutusing namespace std;int _tmain(i...
分类:编程语言   时间:2014-07-16 20:25:04    阅读次数:224
hdu 1338Game Prediction
Game Prediction Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 717    Accepted Submission(s): 385 Problem Description Suppose ther...
分类:其他好文   时间:2014-07-16 17:18:35    阅读次数:183
读C++ Primer 之构造函数陷阱
/* *author:xizero00 *mail:xizero00@163.com *date:2011-08-0721:00:59 *constructortrap */ #include<iostream> usingnamespacestd; classBase { public: //默认构造函数 Base():d(0){} //带一个参数的构造函数 Base(intval):d(val){cout<<"基类构造函数:va..
分类:编程语言   时间:2014-07-15 12:17:45    阅读次数:275
iostream与iostream.h乱弹琴
postypes.h:230:16: error: 'mbstate_t' was not declared in this scope...
分类:移动开发   时间:2014-07-14 17:01:19    阅读次数:227
C++模版基于包含模型之外的显示实例化
一、“经典模型”的失效 我们学过C++的人都知道,在C++中组织代码的经典模型是:将函数或类的声明和定义部分分开在不同的文件之中   , 即一般将声明放在一个.h的头文件中而定义在放在一个.cpp文件之中,当然这的确是写代码的一种很优良的风格,但问题 是如果将这种“经典模型”应用到模版上时就会发生连接上错误。 例如: 文件“A.h” #include"iostream" using...
分类:编程语言   时间:2014-07-13 18:22:09    阅读次数:275
找唯一不出现三次而出现1次的数子O(n)位运算算法
之前两次那个是异或运算处理,这次以为也是类似,但是没想出来。 高富帅想出来了算法,转为bitset,然后加起来 相同的话 要么0+0+0 要么1+1+1,最后剩下的 可以通过%3 算出0 或1,思想是这样, 其实也是bit运算,只不过不是异或这种一次运算O(1)这种,但是由于输入是int数组,-2^31~2^31-1 所以用32bit就可以表示了。 之前遇到,过几次错误,包括分配存储...
分类:其他好文   时间:2014-07-08 16:49:50    阅读次数:180
按字符出现频率对字符进行排序
#include<iostream> #include<string> #include<algorithm> usingnamespacestd; voidtongji() { stringinput; stringoutput; getline(cin,input);//读入带空格的字符串 intn; n=input.size();//求字符串的大小 inta[255]={0}; intb[255]={0}; bo..
分类:其他好文   时间:2014-07-08 09:16:59    阅读次数:218
建立单链表的方法
#include<iostream> usingnamespacestd; structnode{ intd; structnode*next; };//定义结点 node*build1()//头插法构造单链表 { node*p;//指向新建结点 node*head;//头指针 head=NULL; p=head; intx; cin>>x; while(x!=-1) { p=newnode; p->d=x; p-&g..
分类:其他好文   时间:2014-07-08 09:06:06    阅读次数:220
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!