码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
[LeetCode] Linked List Cycle
Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?Hide TagsLinked ListTwo Pointers分析:经典的快慢指针...
分类:其他好文   时间:2015-06-23 17:44:18    阅读次数:99
[LeetCode] Linked List Cycle II
Given a linked list, return the node where the cycle begins. If there is no cycle, returnnull.Follow up:Can you solve it without using extra space?Hid...
分类:其他好文   时间:2015-06-23 17:39:41    阅读次数:140
Sharepoint 2013 通过Secure Store Service获取用户信息
1.在用Secure Store Service获取用户信息之前需要配置SSS。2.以下代码是获取用户信息:using (SPSite site = new SPSite(webUrl)) { SecureStoreProvider prov = ...
分类:其他好文   时间:2015-06-23 17:37:44    阅读次数:105
游戏前端开发的必要设计--观察者模式的应用
游戏开发设计,尤其是在前端开发中观察者模式是一个非常有用的设计。在这里我所讲的观察者模式不同于教科书上。这里我把观察者和发布者结合,两者并存于一体。这样的一个设计使得他可以完整的模拟现实中的对象和对象之间的所有交互。下面是C#语言版本的实现。Actor.cs 这个类用于提供发送和接受using Sy...
分类:其他好文   时间:2015-06-23 17:31:37    阅读次数:131
【二分+容斥+莫比乌斯反演】BZOJ2440 完全平方数
Description 求第k个没有完全平方因子的数,k>1溢出T了一发 正确姿势mid=l>>1+r>>1+(l&r&1) 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 const int maxn...
分类:其他好文   时间:2015-06-23 17:18:44    阅读次数:114
How to install Maven on Mac OS X Mavericks (10.9)
Step 1: Download Maven binaries from Maven Download Page. I was using Maven 3.0.5, so I downloaded apache-maven-3.0.5-bin.tar.gz.Step 2: You can install Maven at any location but since it’s a one time...
分类:系统相关   时间:2015-06-23 15:48:48    阅读次数:264
php 5.3 配置mssql笔记
参考URL https://docs.moodle.org/29/en/Installing_MSSQL_for_PHP#Using_FreeTDS_on_Debian_Lenny第一步,下载相应的dllPHP versionThread SafeFreeTDS versionDownload UR...
分类:数据库   时间:2015-06-23 15:25:47    阅读次数:149
C# asp.net 配置文件连接sql 数据库
先引用using System.Configuration;//配置文件using System.Data.SqlClient;我这里使用的是SqlServer 2008 sa 用户 密码也为sa, 开发工具为visual studio2012前台代码:1 2 -->3 4 后台...
分类:数据库   时间:2015-06-23 15:25:04    阅读次数:177
sharepoint HttpModule实现方式
首先写个IHttpModule的实现类 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Web; namespace NuctechEquipment.Layouts.NuctechEq...
分类:Web程序   时间:2015-06-23 13:37:53    阅读次数:236
c#连接sql数据库并调用
1、导入命名空间 using System.Data.SqlClient; //连接SQLServer 数据库专用 2、创建连接 SqlConnection lo_conn = New SqlConnection("Server=服务器名字或IP;Database=数据库名字;uid=用户名;pwd=密码"); 3、打开连接,第2步并没有真正连接数据库 lo_conn.Open(...
分类:数据库   时间:2015-06-23 12:00:59    阅读次数:147
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!