magento│.htaccess│cron.php //系统cron程序,修改 linux的cron运行,加入magento的一些定时处理│cron.sh│favicon.ico //网站fav图标│index.php //网站入口│index.php.sample //网站入口范例 文件│ins...
分类:
其他好文 时间:
2015-05-28 15:35:03
阅读次数:
719
f(1) = 1, f(2) = 1, f(n) = (A * f(n - 1) + B * f(n - 2)) mod 7.Sample Input1 1 3 //a b n1 2 100 0 0 Sample Output25矩阵A * 矩阵B = 矩阵Ca b f(n-1) f(n...
分类:
其他好文 时间:
2015-05-28 14:01:55
阅读次数:
229
Problem Description
给你n个整数,请按从大到小的顺序输出其中前m大的数。
Input
每组测试数据有两行,第一行有两个数n,m(0
Output
对每组测试数据按从大到小的顺序输出前m大的数。
Sample Input
5 3
3 -35 92 213 -644
Sample Output
213 92 3...
分类:
其他好文 时间:
2015-05-28 09:39:58
阅读次数:
97
//观察下列程序
//Sample Input:
/*
5
aa 89
bb 76
cc 87
dd 89
ee 76
*/
//你觉得会输出什么???
#include
#include
#include
#include
#include
#include
#include
#define MAXN 10010
#define RST(N...
分类:
其他好文 时间:
2015-05-27 19:11:53
阅读次数:
155
小余最近迷恋上了数论,他认为大素数的判定是非常迷人的,但是他的程序总是数一大就死循环= = ,结果找了一晚上,发现原来是求a*b%c这个环节上出现了错误,聪明的你能帮助可怜的小余求出这个问题吗?input 测试数组有多组,每行输入三个整数a,b,c(1<=a,b,c<2^64)output 对于每次输入,对应输出相应的结果即a*b%c的值。每个输出占一行。sample_input 1 2 3
2...
分类:
其他好文 时间:
2015-05-27 19:06:27
阅读次数:
143
1.header
header("Content-Type:application/vnd.ms-excel");
header("Content-Disposition:attachment;filename=sample.xls");
header("Pragma:no-cache");
header("Expires:0");
2.PHPExcel
http://www.codep...
分类:
Web程序 时间:
2015-05-27 12:18:14
阅读次数:
198
DescriptionInput一行两个整数n; k。Output一行一个整数,表示n 个函数第k 层最少能由多少段组成。Sample Input1 1Sample Output1构造方法就是不断的画X(两条线段),如果是奇数最上面(or最下面)的画—我也不知道是怎么想到这么构造的显然如果k>n-k...
分类:
其他好文 时间:
2015-05-26 22:42:12
阅读次数:
114
页面向后台传数据: ????????var?oTable?=?$(‘#sample_2‘).dataTable(?{
????????????"aoColumnDefs":?[
????????????????{?"aTargets":?[?0?]?}
????????...
分类:
其他好文 时间:
2015-05-26 19:18:24
阅读次数:
98
Sample %m(message):输出的日志消息 %n(new line):換行 %d(datetime):输出当前语句运行的时刻 %r(run time):输出程序从运行到执行到当前语句时消耗的毫秒数 %t(thread id):当前语句所在的线程ID %p(priority): 日志的当前优...
分类:
其他好文 时间:
2015-05-26 12:37:36
阅读次数:
197
要实现的部分为:forward prop, softmax函数的cost function,每一层的gradient,以及penalty cost和gradient。forwad propforward prop是输入sample data,使sample data通过神经网络后得到神经网络输出的过...
分类:
Web程序 时间:
2015-05-25 21:58:07
阅读次数:
203