1、安装和配置JAVA的jdk环境到oracal网站http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html,下载java的jdk安装包,如:jdk-7u55-windows-x64.exe安装jdk-7u55-windows-x64.exe,默认下一步即可(安装路径可以自定义)。配置环境变量:右..
分类:
编程语言 时间:
2014-07-17 20:13:41
阅读次数:
596
时间限制:0.25s空间限制:4M题意: 一个人在一个周长为L的圆上跑,每个时间段(Ti)的速度(Vi)不一样,问最后他离起点的圆弧距离,周长是个有四位小数的浮点数,其它全是整数。Solution : 在遇到浮点数的时候,能避免处理就尽量避免处理。 这里只要将浮点数乘上1000...
分类:
其他好文 时间:
2014-07-15 23:20:50
阅读次数:
328
转自:http://blog.csdn.net/chen_chun_guang/article/details/6323201 初学Java语言, 代码中的extends和implements让我感到很迷惑,现在终于弄明白它们之间的区别和用法了。//定义一个Runner接口 public in...
分类:
编程语言 时间:
2014-07-13 09:30:27
阅读次数:
187
Implement an algorithm to find the kth to last element of a singly linked list.Classical "Runner" Technique of linkedlist/*Use two pointers, forward o...
分类:
其他好文 时间:
2014-07-08 00:37:17
阅读次数:
315
关于 NUint 以及单元测试的相关内容,可以参考:【单元测试】NUint使用详解及Visual Studio配置。 xUnit 是 NUint 的进化版本,使用方法和 NUint 类似,首先下载安装一个“xUnit.net runner for Visual Studio 2012 and ...
分类:
其他好文 时间:
2014-07-07 22:20:42
阅读次数:
253
以上是工程文件,下面开始测试package test.testservice;import org.junit.Test;import org.junit.runner.RunWith;import org.springframework.beans.factory.annotation.Autow...
分类:
编程语言 时间:
2014-07-07 11:50:50
阅读次数:
163
Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?Analysis: typical Runner Technique. 一次过 1 ...
分类:
其他好文 时间:
2014-06-28 13:44:51
阅读次数:
164
这一篇,总结一下runner的用法。runner是个啥呢,runner的写法和executionmodule的写法差不多。不同的是,executionmodule需要同步到minions上,然后在minions上面执行,而runner则,在master上直接用salt-run这个命令就可以调用了,而不需要同步到minions上面。既然,runner和..
分类:
其他好文 时间:
2014-06-26 06:20:24
阅读次数:
313
Description
The Broken Pedometer
The Problem
A marathon runner uses a pedometer with which he is having problems. In the pedometer the symbols are represented by seven s...
分类:
其他好文 时间:
2014-06-18 12:31:09
阅读次数:
203
开始没理解题意。原来destinations是指路的序号。而不是点。DP。 1 #include 2
#include 3 4 int dp[2005]; 5 6 typedef struct { 7 int s, e, w; 8 } road_st; 9 10
road_st ro...
分类:
其他好文 时间:
2014-05-29 09:18:50
阅读次数:
325