码迷,mamicode.com
首页 >  
搜索关键字:using stacks    ( 53729个结果
Codeforces Round #243 (Div. 2) B. Sereja and Mirroring
#include #include #include using namespace std;int main(){ int n,m; cin >> n >> m; vector > a(n,vector(m,0)); for(int i = 0; i > a[i][j]; ...
分类:其他好文   时间:2014-04-29 17:41:18    阅读次数:425
C++虚复制构造函数
构造函数不能是虚函数。但有时候确实需要能传递一个指向基类对象的指针,并且有已创建的派生类对象的拷贝。通常在类内部创建一个Clone()方法,并设置为虚函数。//Listing 12.11 Virtual copy constructor#include using namespace std;cla...
分类:编程语言   时间:2014-04-29 17:26:52    阅读次数:522
2014/4/28 多校第九次
C:快速求N以内因数和,N以内互质数的和。容斥版: 1 #include 2 #include 3 #include 4 #define maxn 1100000 5 #define LL long long 6 //N以内gcd(i,N)==1的i的和 7 using name...
分类:其他好文   时间:2014-04-29 17:08:17    阅读次数:470
Codeforces Round #243 (Div. 2) A. Sereja and Mugs
#include #include #include #include using namespace std;int main(){ int n,s; cin >> n >> s; vector a(n); for(int i = 0 ; i > a[i]; sort...
分类:其他好文   时间:2014-04-29 16:42:39    阅读次数:415
反射(转载)
在网上查找了不少的资料,可以说大同小异,概念性的东西网上一搜一堆,今天把反射的东西整理了一下,供大家使用,我保证我这里是最全面的东西,当然也是基础的东西,在学好了这一切的基础上,大家可以学习反射的具体插件等应用,老鸟就不用看了.首先我们建立一个类库,将它生成为HelloWorld.dll,using...
分类:其他好文   时间:2014-04-29 16:08:47    阅读次数:504
《Cracking the Coding Interview》——第17章:普通题——题目7
2014-04-28 23:28题目:给定一个数字,用英语把它读出来。解法:ZOJ上有相反的题目。如果我要用中文读书来呢?代码: 1 // 17.7 Read an integer in English. 2 #include 3 #include 4 using namespace s...
分类:其他好文   时间:2014-04-29 15:29:44    阅读次数:423
《Cracking the Coding Interview》——第18章:难题——题目1
2014-04-29 00:56题目:不用算数运算,完成加法。解法:那就位运算吧,用加法器的做法就可以了。代码: 1 // 18.1 add two numbers wihout using arithmetic operator. 2 #include 3 using namespace std....
分类:其他好文   时间:2014-04-29 14:58:53    阅读次数:383
《Cracking the Coding Interview》——第18章:难题——题目4
2014-04-29 01:05题目:数数从0到n总共有多少个数字‘2’?解法:数位动态规划,可以O(log10(n))时间内解决。代码: 1 // 18.4 Count the number of 2s from 0 to n. 2 #include 3 using namespace std;....
分类:其他好文   时间:2014-04-29 14:44:34    阅读次数:380
Using MySQL Connector .NET 6.6.4 with Entity Framework 5
I had been waiting for the latest MySQL connector for .NET to come out so I can move on to the new and sleek Visual Studio 2012 for my projects. Found...
分类:数据库   时间:2014-04-29 14:17:54    阅读次数:753
.NET读取Office文件内容(word、excel、ppt)
引用命名空间1 using Microsoft.Office.Core;2 using Word = Microsoft.Office.Interop.Word;3 using Excel = Microsoft.Office.Interop.Excel;4 using PowerPoint = M...
分类:Web程序   时间:2014-04-29 13:30:46    阅读次数:748
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!