uva11525:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=2520题意:求1,2,3,4,.....k个数所形成的全排列中的第n个。其中n的是由计算出...
分类:
其他好文 时间:
2014-07-13 21:13:52
阅读次数:
261
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=6913874119133The Dole QueueAcceptedC++0.0092014-07...
分类:
其他好文 时间:
2014-07-13 20:59:42
阅读次数:
226
加入滚动栏的遮罩,滚动栏图片须要自己调整路径function loading() { var divloading = ""; //$("loadingdiv").css({ "z-index": "-10", "opacity": "0.5" }); $("body").prepend(di...
分类:
其他好文 时间:
2014-07-13 19:32:43
阅读次数:
230
使用情境:我想输入www.abc.com/a/1后,跳转到www.abc.com/index.php/a/1
配置Nginx.conf在你的虚拟主机下添加:
location / {
if (!-e $request_filename){
rewrite ^/(.*)$ /index.php/$1 last;
}
}
如果你的项目...
分类:
Web程序 时间:
2014-07-13 18:52:33
阅读次数:
258
http://developer.android.com/guide/practices/ui_guidelines/widget_design.html#design
http://developer.android.com/guide/topics/appwidgets/index.html
http://developer.android.com/guide/topics/appwidg...
分类:
移动开发 时间:
2014-07-13 18:03:10
阅读次数:
294
仅收集我在开发过程中觉得对我个人很有帮助的ctrl + e ;查看最近打开的工程文件ctrl+shift+n比如要跳转到templates/default/index.html基本上输入te/de/in,就可以出现上面的文件了,当然输入的越详细,给出的结果越准确,支持模糊查询
分类:
Web程序 时间:
2014-07-13 17:52:59
阅读次数:
200
这里记录下堆的相关操作。
op 1:
'''
@ data: the heap array
@ p : index of parent item
@ n : number of data
@@ Swap p and it's son items, make p the largest of them
'''
def swapForMaxHeap(data, n, p):
l...
分类:
其他好文 时间:
2014-07-13 17:07:15
阅读次数:
223
默认网站根目录为/usr/local/nginx/html,要将它改成/homw/www
vi /usr/local/nginx/conf/nginx.conf
将其中的
location / {
root html;
index index.php index.html index.htm;...
分类:
Web程序 时间:
2014-07-13 17:06:03
阅读次数:
219
Layout 是 D3 中 “制作常见图形的函数”,用 Layout 可以轻松地对输入数据进行转换,使得它能容易地适应可视化图形使用的需要。...
分类:
Web程序 时间:
2014-07-13 16:30:01
阅读次数:
294
配置nginx支持php 出现了No input file specified ?
只要修改下安装目录下的 nginx.conf下的
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index ...
分类:
Web程序 时间:
2014-07-13 16:16:48
阅读次数:
270