题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3326
题面:
An Awful Problem
Time Limit: 1 Second Memory Limit: 32768 KB
In order to encourage Hiqivenfin to study m...
分类:
其他好文 时间:
2015-04-22 22:20:29
阅读次数:
138
http://acm.hdu.edu.cn/showproblem.php?pid=3706Second My Problem FirstTime Limit: 12000/4000 MS (Java/Others)Memory Limit: 65536/65536 K (Java/Others)T...
分类:
其他好文 时间:
2015-04-22 21:59:21
阅读次数:
125
shoppingList = ['apple','banana','cat','dog','duck']#Indexing and 'subscription operation'print('The first item is',shoppingList[0])print('The second ...
分类:
编程语言 时间:
2015-04-22 17:35:12
阅读次数:
144
#include
using namespace std;
#include
struct Time{
int hour;
int minute;
int second;
};
void set(Time *p,int h,int m,int s)
{
p->hour=h;
p->minute=m;
p->second=s;
}
void tick(Time *p)
{
long t...
分类:
编程语言 时间:
2015-04-22 11:48:21
阅读次数:
190
1.显示的数据var datas = { id:"number"}2.temp模板3.要显示的地方html4.用js显示数据/*first*/var temp = Handlebars.compile($("#template").html());/*second*/ //注册一个比较大...
分类:
其他好文 时间:
2015-04-22 10:57:32
阅读次数:
147
题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=3758
题面:
Guess the Price
Time Limit: 1 Second Memory Limit: 32768 KB
In the television program "Shopping Street...
分类:
其他好文 时间:
2015-04-22 09:37:38
阅读次数:
191
On the beaming day of 60th anniversary of NJUST, as a military college which was Second Artillery Academy of Harbin Military Engineering Institute before, queue phalanx is a special landscape.
...
分类:
其他好文 时间:
2015-04-22 00:39:12
阅读次数:
155
1. pairtemplate struct pair
{ typedef T1 first_type; typedef T2 second_type; T1 first; T2 second; pair() : first(T1()), second(T2()) {} pair(const T1 ...
分类:
其他好文 时间:
2015-04-22 00:36:04
阅读次数:
132
Create a simple class. Inside a second class, define a reference to an object ofthe first class. Use lazy initialization to instantiate this object. 1...
分类:
编程语言 时间:
2015-04-21 22:15:37
阅读次数:
150
Two Strings Are Anagrams判断两个字符串是否为重组的,没想到太好的方法,直接用计数法简单粗暴。public class Solution { /** * @param s: The first string * @param b: The second s...
分类:
其他好文 时间:
2015-04-21 20:24:21
阅读次数:
120