码迷,mamicode.com
首页 >  
搜索关键字:bcv std    ( 41629个结果
C++程序设计原理与实践
std_lib_facilities.h和VS下创建C++程序方法:下载目录:
分类:编程语言   时间:2014-05-04 19:57:27    阅读次数:269
托管c++ (CLI) String^ 到 std::string 的相互转化
#include "stdafx.h" #include #include #include using namespace msclr::interop; using namespace System; int main(array ^args) { // 为了可以打印wstring到控制台 std::wcout.imbue(std::locale("chs")); // 声明...
分类:编程语言   时间:2014-05-04 18:30:58    阅读次数:418
概率法计算PI
#include using namespace std;//概率计算PIint main(){ int inside=0; double val; int i; for ( i=0; i<100000000; i++) { double x = (dou...
分类:其他好文   时间:2014-05-04 11:47:49    阅读次数:262
UVA 10405 Longest Common Subsequence
最长公共子系列,简单的dp,不过注意有空格,所以,在读字符串的时候,尽量用gets读,这样基本没问题#include#include#include#includeusing namespace std;int dp[1001][1001];int MAX(int x,int y){ if (...
分类:其他好文   时间:2014-05-04 11:34:41    阅读次数:294
20140503
1、队列(建议采用带头结点的链式队列) 何时为空?答:当队列头指针等于尾指针时,队列为空。(对一般队列而言,循环队列除外) //不带头结点的链式队列 //不带头结点的链式队列#include #include #include using namespace std; (出队操作) node1-->...
分类:其他好文   时间:2014-05-04 11:31:15    阅读次数:335
BOOST_CLASS_EXPORT
用基类的指针去转存派生类时除了上一篇boost::serialization 用基类指针转存派生类(错误多多,一波三折)之外,还有另一种更简单的方法: 用BOOST_CLASS_EXPORT宏。下面我们来分析怎样用BOOST_CLASS_EXPORT来实现 用基类的指针去转存派生类。 首先来看前面实例的一段代码: void save() { std::ofstream ofs("t7.x...
分类:其他好文   时间:2014-05-04 09:48:50    阅读次数:487
[C/C++标准库]_[优先队列priority_queue的使用]
std::priority_queue 场景: 1. 对于一个任务队列,任务的优先级由任务的priority属性指明,这时候就需要优先级越高的先执行。而queue并没有排序功能,这时priority_queue是比较好的选择. 2 对于异步的task也是一样,在不断添加新的task时,当然希望优先级越高的先执行. 解析: 1. 如果需要把优先级最高的先pop,那么comp比较时需要返回false....
分类:编程语言   时间:2014-05-04 09:33:44    阅读次数:382
CF 427D Match & Catch 求最短唯一连续LCS
题目来源:CF 427D Match & Catch 题意:给出2个字符串 求最短的连续的公共字符串 并且该字符串在原串中只出现一次 思路:把2个字符串合并起来求height 后缀数组height的应用 #include #include #include using namespace std; const int maxn = 100010; char s[maxn]; int s...
分类:其他好文   时间:2014-05-04 09:32:45    阅读次数:315
SPFA(模板)
转载请注明出处: #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; #define pi acos(-1....
分类:其他好文   时间:2014-05-04 09:25:24    阅读次数:303
hud-3530-Subsequence-维护两个单调队列
维护两个单调队列,一个存储当前点之前的最大值。 另外一个存储当前点之前的最小值。 若最大值与最小值之间的差大于k,那么就把最大值和最小值中位置靠前的往后移。 #include #include #include #include #include using namespace std; //#define INF ((1<<30)-1) #define INF 0xfffff #defin...
分类:其他好文   时间:2014-05-04 09:23:04    阅读次数:372
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!