码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
批量设置AssetBundleName
using UnityEngine; using System.Collections; using UnityEditor; using System.IO; public class ChangeName : MonoBehaviour { // public string versionDir
分类:其他好文   时间:2016-03-03 19:13:59    阅读次数:132
胖子哥的大数据之路(14):数据价值链模型
一、模型示意图 二、模型解读 Knowledge is also defined using taxonomy, with levels describing data, information, knowledge and wisdom. Briefly, data is defined as a
分类:其他好文   时间:2016-03-03 19:00:53    阅读次数:130
创建链表的同时自动完成结点数据排序
/* 创建链表时自动完成链表上结点按某一关键字排序 最简单的方法是在创建链表时用插入结点的方式完成链表的建立 /* C++代码 */ #include <iostream> using namespace std; struct node //结点结构 { int data ; node * nex
分类:编程语言   时间:2016-03-03 17:38:58    阅读次数:206
链表的操作
/*用结构体实现链表的创建、遍历、结点插入、结点删除 */ /*本题中链表结点的输入必须是升序(可以相邻的相同),删除的时候也是把与要删除同数据的多个相同的结点都删除掉*/ #include <iostream> using namespace std; struct node //结点结构 { i
分类:其他好文   时间:2016-03-03 17:33:55    阅读次数:166
ashx文件不能使用DAL和Model的解决办法
好久没有写web程序了,今天在写web程序时,发现一个问题,在ashx文件中,已经using了DAL和Model命名空间,而且引用中也引用了程序集,可是还报错:未能找到类型或命名空间"Model"(是否缺少using指令或程序集引用) 刚开始以为是没有using基类的命名空间,于是添加上,发现依然报
分类:其他好文   时间:2016-03-03 14:40:32    阅读次数:137
bzoj1588: [HNOI2002]营业额统计 treap
原来treap这么简单。。。比splay简单多了。。。。 #include<bits/stdc++.h> #define REP(i,a,b) for(int i=a;i<=b;i++) #define MS0(a) memset(a,0,sizeof(a)) using namespace std
分类:其他好文   时间:2016-03-03 14:30:09    阅读次数:132
Python 2.7.8 学习笔记(001)python manuals/the python tutorial -- 2. Using the Python Interpreter
添加c:\python27到环境变量path python -c command [arg] ..., python -m module [arg] ..., 参数传递:the argv variable in the sys module >>> //交互模式 用缩进表示语句块,可真不习惯 >>>
分类:编程语言   时间:2016-03-03 01:37:19    阅读次数:222
一个小的单例类。再也不用担心继承类问题。
using UnityEngine;using System.Collections; public class TSingleton<T> where T: new () { private static T Singleton; public static T GetInstance() { i
分类:其他好文   时间:2016-03-03 01:21:28    阅读次数:134
bzoj 1087: [SCOI2005]互不侵犯King
1 #include<cstdio> 2 #include<iostream> 3 #define M 600 4 int b1[M],b2[M][M],n,m,s,sum[M]; 5 long long f[10][M][M],ans; 6 using namespace std; 7 int m
分类:其他好文   时间:2016-03-03 00:06:01    阅读次数:179
bzoj 1083: [SCOI2005]繁忙的都市
1 #include<cstdio> 2 #include<iostream> 3 #include<algorithm> 4 #define M 10005 5 using namespace std; 6 struct data 7 { 8 int u,v,w; 9 }a[M]; 10 int
分类:其他好文   时间:2016-03-03 00:04:43    阅读次数:167
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!