简述jkstatus的用法,以及设置访问jkstatus的密码等...
分类:
其他好文 时间:
2014-09-27 20:13:40
阅读次数:
151
简述如何使用Telnet一键关闭Tomcat...
分类:
Web程序 时间:
2014-09-27 19:22:30
阅读次数:
281
【题意简述】:就是说一串数字,现在让我们换一种方式去描述它,用该数字的个数和数字本身去重新描述这串数字。
【分析】:简单模拟一下。
//248k 641ms
#include
using namespace std;
int main()
{
int t;
char digits[1001];
cin>>t;
while(t--)
{
cin>>digits;
int l...
分类:
其他好文 时间:
2014-09-27 14:26:49
阅读次数:
198
使用Cloudsim实现基于多维QoS的资源调度算法之二:实现基于多维QoS的资源调度算法
简述Cloudsim的体系结构、核心类、工作模型、资源调度算法实现的步骤、对多维QoS的处理等。...
分类:
其他好文 时间:
2014-09-27 11:45:59
阅读次数:
314
Unity3D的uGUI系统的将UI可能触发的事件分为12个类型,即EventTriggerType枚举的12个值。如下图所示:先以PointerClick为例。这个是用于某点点击事件。其他事件都可以根据相同的办法调用。之所以使用PointerClick为例。是因为在最后笔者会提到一个特殊的实现方式...
分类:
其他好文 时间:
2014-09-27 05:50:09
阅读次数:
543
【题意简述】:去掉一个最高分,去掉一个最低分,求平均分。
【分析】:此题和POJ3507其实质是一样的。
//732K 32Ms
#include
#include
#include
using namespace std;
int score[101];//成绩
int main()
{
int t;
int sum;
while(1)
{
sum = 0;
cin>>t...
分类:
其他好文 时间:
2014-09-26 21:51:49
阅读次数:
213
【题意简述】:由The drive ratio -- the ratio of the angular velocity of the pedals to that of the wheels -- is
n : m where n is the number of teeth on the rear sprocket and
m is the number of teeth on the f...
分类:
其他好文 时间:
2014-09-26 21:24:18
阅读次数:
209
简述CentOS中安装Apache2.2.29、OpenSSL、Perl5的方法,以及Apache目录文件的不同...
分类:
其他好文 时间:
2014-09-26 20:55:58
阅读次数:
190
1.进入游戏领域也有半年时间了,尝试针对目前看到的东西做一个系统的总结2.手游、页游后端使用Erlang开发,你需要具备的技术点。3.后面我会把一些重要的技术点,做一些教程
分类:
其他好文 时间:
2014-09-26 14:03:58
阅读次数:
137
【题意简述】:就是这个树桩,当它比它身边的树桩都高的时候,他就能炸掉身边的树桩。现在让我们使用最少的炸药将所有树桩都炸掉,问这些炸弹都放在哪些树桩上。
【分析】:简单的模拟一下,运用贪心法则,只要这个树桩比身边的其他树桩高,就输出它的位置即可。
但是,的确要注意一下边界的处理!
//412K 516Ms
#include
using namespace std;
int Stump[5...
分类:
其他好文 时间:
2014-09-25 23:33:48
阅读次数:
176