码迷,mamicode.com
首页 >  
搜索关键字:using password: yes    ( 53562个结果
json的js和C#操作
C#端的WebService接口接收json格式数据,处理后以json格式返回resultusing System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Service...
分类:Web程序   时间:2014-05-31 17:30:19    阅读次数:249
c++训练营--重载
// demo1.cpp : 定义控制台应用程序的入口点。//通过此例程了解重载#include "stdafx.h"#include using namespace std;class CMath{public:CMath(float a):m_a(a){}~CMath(){}double Add...
分类:编程语言   时间:2014-05-31 16:48:33    阅读次数:317
u3d读取xml txt
u3d读取xml文件和u3d 读取txt外部文件using UnityEngine;using System.Collections;using System.Xml;using System.Xml.Serialization;using System.IO;using System.Text; ...
分类:其他好文   时间:2014-05-31 16:47:54    阅读次数:229
CreateMutex实现只能打开一个客户端
#include "stdafx.h"#include #include using namespace std;int _tmain (int argc, LPTSTR argv[]){ HANDLE h=CreateMutex(NULL,TRUE,"AAAAAAA"); if(Get...
分类:其他好文   时间:2014-05-31 16:44:37    阅读次数:209
【HDOJ】1754 I Hate It
线段树。 1 #include 2 #include 3 #include 4 using namespace std; 5 6 #define mymax(a, b) (a>b) ? a:b 7 8 const int maxn = 200005; 9 10 int nums[maxn>...
分类:其他好文   时间:2014-05-31 15:22:14    阅读次数:264
C#自动给文章关键字加链接实现代码
using System;using System.Collections;using System.Collections.Generic;using System.Linq;using System.Text.RegularExpressions;using System.Web;using S...
分类:其他好文   时间:2014-05-31 12:45:40    阅读次数:199
Hash poj3349 Snowflake Snow Snowflakes
题意:判断是否有两片一样的雪花。 Hash第一题,基本是抄的。#include #include #include #include #include #include #include #include #include #include #include using namespace std;...
分类:其他好文   时间:2014-05-31 08:24:44    阅读次数:211
求一棵普通树的两个结点的最低公共祖先
一棵普通树,树中的结点没有指向父节点的指针,求一棵普通树的两个结点的最低公共祖先。代码如下,我太懒没有加注释,大家自己看吧! 1 #include 2 #include 3 #include 4 using namespace std; 5 6 struct TreeNode /...
分类:其他好文   时间:2014-05-31 08:08:32    阅读次数:262
STL之vector
1.添加 vector 头文件. 1: #include 2: #include 3: 4: using namespace std;2.构造函数 //默认构造函数v1 vector v1; //默认构造函数v1 v1.push_back(1);//在容器的最后添加一个值为t的数据,容器的size变...
分类:其他好文   时间:2014-05-31 07:59:03    阅读次数:235
C# 多线程操作队列
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;using System.Net;using System.Runtime.Interop...
分类:编程语言   时间:2014-05-31 05:59:18    阅读次数:260
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!