NSString *str=@"// Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to p....
分类:
其他好文 时间:
2015-07-24 12:19:52
阅读次数:
137
In May 2014, I started to apply for HKU. Dr.Heming found me. He wanted to give me an interview. I was pleased to receive his tasks. From May to September 2014, I concentrated myself on his tasks about...
分类:
其他好文 时间:
2015-07-24 08:04:04
阅读次数:
127
拓扑排序,不用判断是否有环,dfs挺简单的
代码:
#include
#include
#include
int map[105][105];
int visit[105];
int c[105];
int n,m,t;
void dfs(int x)
{
visit[x] = 1;
for(int i=1; i<=n; i++)
{
if(!visit[i]&&map[i][x]=...
分类:
编程语言 时间:
2015-07-24 00:00:33
阅读次数:
410
using System.Linq;using System.Text;using System.Threading.Tasks;using System.Reflection;using TrustDevKit.Accident_WebService;using TrustDevKit.local...
分类:
数据库 时间:
2015-07-23 23:35:07
阅读次数:
407
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace C数据结构与算法 { class Program...
分类:
其他好文 时间:
2015-07-23 23:28:26
阅读次数:
184
/*
Call ThreadFunc NUM_TASKS times,using no more than THREAD_POOL_SIZE threads.Thiss
version uses WaitForSingleObject,which gives a very suboptimal solution.*/
//busywait.c
/*Domonstrate the eff...
分类:
其他好文 时间:
2015-07-23 15:47:59
阅读次数:
125
Sublime Text 3 Plugins(**)packet control:plugin包管理器
(**)netuts-fetch:
(**)markdown editing:Markdown编辑器
(**)plain tasks:事务管理
(**)snippets-C++:
(**)Ctags:函数定义跳转等
(**)BracketHighlighter:高亮显示匹配的括号、引号...
分类:
其他好文 时间:
2015-07-23 00:45:04
阅读次数:
193
看到[vb.net]控制台进度条的示例感觉很好玩,翻译成C#版。using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using S...
后台代码:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Web;namespace JTZK_Ha...
分类:
其他好文 时间:
2015-07-22 18:30:57
阅读次数:
116
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Data;namespace ConsoleAppl...
分类:
其他好文 时间:
2015-07-22 18:01:21
阅读次数:
106