码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
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
博客测试
#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
Linq to EF 和 Linq to SQL 中间Linq 产生的SQL语句
一,Linq to EF using System;using System.Runtime.CompilerServices;using System.Linq;using System.Data; namespace EntityframeworkSQL{ class Program { sta...
分类:数据库   时间:2014-07-22 23:00:53    阅读次数:553
C#简单工厂模式(文件案例)
using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Text;using System.Threading.Tasks;namespace 读文件案例{ cla...
分类:其他好文   时间:2014-07-22 22:59:55    阅读次数:241
几个数据库的小案例(一):将文本文件中的信息导入数据库的表中
从文本文件添加到数据库用户表的记录(有两个文件:frmMain.cs SqlHelper.cs )//FrmMain.cs//作者:Meusing System;using System.Collections.Generic;using System.ComponentModel;using Sy...
分类:数据库   时间:2014-05-01 22:45:21    阅读次数:667
DbUtility-查询DataTable
直接上源码 1 using System; 2 using System.Data; 3 using System.Threading.Tasks; 4 using DbUtility; 5 6 namespace TestDbUtilityConsole 7 { 8 class Prog...
分类:数据库   时间:2014-05-01 21:15:43    阅读次数:560
C#冒泡排序
C#冒泡排序,转载自:http://bbs.it-home.org/forum-net-2.html不多解析自己看去吧using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace...
分类:其他好文   时间:2014-05-01 20:17:35    阅读次数:348
求二进制数中1的个数
问题:对于一个字节(8bit)的无符号整形变量,求二进制表示中“1”的个数,要求算法的执行效率尽可能高。 1 #include 2 using namespace std; 3 //最简单的思路,除2有余数 4 int fun1(unsigned int a) 5 { 6 int coun...
分类:其他好文   时间:2014-05-01 19:47:34    阅读次数:355
sdut 2847 Monitor (思维题)
题目题意:给定a, b, x, y; 求使c, d; 使c:d = x :y; 且c 2 #include 3 #include 4 #include 5 using namespace std; 6 7 long long gcd(long long a, long long b) 8 {...
分类:其他好文   时间:2014-05-01 19:30:04    阅读次数:372
继承
一。 1.基类的私有成员仅在基类中可见,而在派生类中是不可见的,基类的私有成员可以由派生类继承,但在派生类中不可见 2.使用using声明可以改变成员在派生类中的访问权限。比如,基类中的共有成员在一般情况下被继承为共有成员,但使用using 声明可以将其改为私有成员...
分类:其他好文   时间:2014-05-01 18:57:11    阅读次数:231
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!