http://acm.hdu.edu.cn/showproblem.php?pid=1258关键点就是一次递归里面一样的数字只能选一次。 1 #include 2 #include 3 4 int n,t; 5 int b[15],c[15]; 6 bool flag; 7 void dfs(...
分类:
其他好文 时间:
2015-05-21 10:20:53
阅读次数:
151
今天说一下我对回调函数的认识和理解.
其实我们收到短信,手机铃声响起就是一个回调函数var ring= function () {
//手机铃声响起或手机震动
};
addEvent('收到短信', 手机, ring);我们读小学时,午休会让班长(监听器)巡逻,看哪个小伙伴(事件目标)睡觉不老实(比如说话打闹,这是事件),一旦发现就通知班主任(事件处理程序).
这...
分类:
其他好文 时间:
2015-05-21 00:02:09
阅读次数:
177
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1016原题:A ring is compose of n circles as shown in diagram. Put natural number 1, 2, ..., n into each ci...
分类:
其他好文 时间:
2015-05-20 00:11:30
阅读次数:
138
装好KDE后有个号kwallet的程序经常性跳出来,要接管我的密码。Mac下的key-ring我是知道的,挺好用。不过这个kwallet乍一看好像挺麻烦,要我设置好gnupg才方便。可是这个gnupg是个什么东东也不知,怎么用更是不知。终于忍不住去wiki看了一下gnupg的项,也不是太烦嘛,只要用...
分类:
其他好文 时间:
2015-05-13 06:07:59
阅读次数:
116
function AudioPerform() { var ua = navigator.userAgent.toLowerCase(); var audiopath = "$!{TempletPath}images/ring.wav"; ...
分类:
Web程序 时间:
2015-05-12 15:19:24
阅读次数:
323
dfs水题
#include
#include
#define maxn 20+5
#define pr 100000
using namespace std;
int n;
int visit[maxn];
int re[maxn];
int ans;
int u[pr]={0};
void prime()
{
int i,j;
u[0]=1,u[1]=1;
for(i=2;i<pr;...
分类:
其他好文 时间:
2015-05-09 16:30:25
阅读次数:
105
用clojure写了一个简单的短网址服务(一半抄自《Clojure 编程》)。在那基础上增加了数据库,来持久化数据。功能用Get方法缩短一个网址:然后在短网址列表就能够查看了,接下来訪问那一长串地址就能够通过:浏览器重定向:代码剪影url路由部分:用korma库,通过id查询到对应的url:这里的u...
分类:
其他好文 时间:
2015-05-07 16:19:39
阅读次数:
117
http://acm.hdu.edu.cn/showproblem.php?pid=2296
Problem Description
For the hope of a forever love, Steven is planning to send a ring to Jane with a romantic string engraved on. The string's le...
分类:
其他好文 时间:
2015-05-04 15:37:13
阅读次数:
212
Prime Ring Problem
Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 31900 Accepted Submission(s): 14108
Problem Description
A ring is...
分类:
其他好文 时间:
2015-05-04 10:06:07
阅读次数:
163
题目大意:给出n,用1-n来组成一个环,要求相邻的两个数之和为素数。解题思路:dfs,注意判断最后一个和第一个数之和也要为素数。#include
int n, vis[20], rec[20] = {1}, isPrime[50];void DFS(int cur) {
if (cur == n) {
if (isPrime[rec[cur - 1] + 1...
分类:
其他好文 时间:
2015-05-03 19:06:19
阅读次数:
111