码迷,mamicode.com
首页 >  
搜索关键字:using password: yes    ( 53562个结果
U3D调用7z解压文件
using UnityEngine;using System;using System.IO;using System.Diagnostics;public class Test : MonoBehaviour{ //7z程序的程序目录 private string _7zExeUrl ...
分类:其他好文   时间:2014-06-28 10:39:29    阅读次数:168
对象的思考1
一个对象能自己能否作为自己的一个成员?using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApp...
分类:其他好文   时间:2014-06-26 00:27:11    阅读次数:169
zoj-3790-Consecutive Blocks
使用l,r指针游动。 然后使用记录游动过程中的最大值。 我离散化了一下。 #include #include #include #include #include #include using namespace std; #define maxn 110000 mapmp; struct list { int x; int get; int lose; in...
分类:其他好文   时间:2014-06-22 11:52:02    阅读次数:226
zoj-3795-Grouping-tarjan缩点求最长路
用tarjan进行缩点。 然后用dfs求最长路。水体。。。 #include #include #include #include #include #include #include using namespace std; #define maxn 110000 vectorold[maxn]; vectorvec[maxn]; int dnf[maxn],low[maxn],instac...
分类:其他好文   时间:2014-06-22 11:51:01    阅读次数:203
zoj-3792-Romantic Value-最小割+数值转化
如果不需要求边的个数的话,就是一个裸的最小割问题。 求边的个数就用边的权值记录一下。 #include #include #include #include #include using namespace std; #define INF 99999999 #define LL long long const LL maxn =55; const LL maxm =4400; con...
分类:其他好文   时间:2014-06-22 11:15:00    阅读次数:167
USACO runaround
/* ID:kevin_s1 PROG:runround LANG:C++ */ #include #include #include #include #include #include #include #include #include #include #include using namespace std; //直接枚举即可 //gobal variable...
分类:其他好文   时间:2014-06-22 11:06:45    阅读次数:185
[翻译] TGLStackedViewController
TGLStackedViewControllerA stack layout with gesture-based reordering using UICollectionView -- inspired by Passbook and Reminders apps.这是一种使用了UICollec...
分类:其他好文   时间:2014-06-22 10:47:19    阅读次数:290
poj-3791-An Easy Game-记忆化搜索
dp[i][j]:还有i个不相同的位置,还能走j步,一共有多少种走法。 很明显 dp[i][j]=sigm(dp[i-k][j-1]*c[i][k]*c[n-i][m-k]); 用记忆化搜索记忆一下即可。 #include #include #include #include #include #include #include using namespace std; #define m...
分类:其他好文   时间:2014-06-22 08:07:31    阅读次数:203
Starting Threads and Using Anonymous Classes
As we all know,a thread is a separate process on your computer.you can run multiple threads all at the same time. multi-threaded code has the disadvantage of becoming quite complex very quickly,altho...
分类:其他好文   时间:2014-06-22 07:25:06    阅读次数:244
hibernate Disabling contextual LOB creation as connection was null
????用hibernate访问sybase时遇见的异常。 Could not obtain connection metadata : ASE is now using a multi-byte character set, and the TEXT character counts have not been re-calculated using this character set ...
分类:系统相关   时间:2014-06-22 06:19:49    阅读次数:1188
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!