Sorting is often useful as the first step in many different tasks. The most common task is to make finding things easier, but there are other uses als...
分类:
其他好文 时间:
2014-08-15 12:45:48
阅读次数:
382
完成的效果如下查看效果并下载Step 1:先了解border的原理:Step 2:HTML代码结构Html代码StartPauseStopForwardForwardRewindRewindEjectEjectStep 3:画背景圆,position:relativeCss代码.playContai...
分类:
Web程序 时间:
2014-08-15 12:45:28
阅读次数:
322
题意:。。。
策略:深搜.
仔细分析我们发现,我们只需要对列进行标记,对于行我们考虑放棋子还是不放就行了。
代码:
#include
#include
char s[10][10];
int n, m;
int vis[10];
int ans;
void dfs(int cur, int step)
{
if(step == m){
ans ++;
return;
}
if...
分类:
其他好文 时间:
2014-08-15 09:30:27
阅读次数:
153
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given the fol...
分类:
其他好文 时间:
2014-08-14 23:26:46
阅读次数:
219
当我们开始逐步把Net平台上面的Web开发从webform过度到MVC 开发的时候。我们总想弄清楚Mvc到底是什么??其实Mvc并不是Net特有的一种开发技术。而是一种软件开发的模式。早在上个世界80年代。Xerox PARC为编程语言Smalltalk-80发明的一种软件设计模式,已被广泛使用。那...
分类:
Web程序 时间:
2014-08-14 23:21:56
阅读次数:
247
场景希望在包执行的时候可以随意选择参数,这时候我们可以用环境变量 . 另外所有包都可以用环境变量,有大量包的时候就比较方便.Step 1: 创建SSIS包在Data Flow Task里面创建 OLEDB Source 和 Flat File Destination 连接管理器.Step 2: 在连...
分类:
其他好文 时间:
2014-08-14 16:23:48
阅读次数:
233
截的图大小不一,就请将就着看吧!测试操作系统和硬件环境是否符合,我使用的是win2008企业版。下面的都是step by step看图就ok了,不再详细解释。请留意下面的总的设置步骤:----------------------------------------------------------...
分类:
数据库 时间:
2014-08-14 10:21:08
阅读次数:
282
Ubuntu 安装配置minicom
1 . 安装 Minicom
用新立得软件管理器下载minicom
2.配置Minicom
shell下输入
minicom -s
打开配置界面
进入Serial port setup
Next step:
进入串口配置
输入A配置串口驱动为...
分类:
其他好文 时间:
2014-08-13 01:09:34
阅读次数:
339
#include
#include
#include
#include
#include
#include
#include
#include
#define N 110
int a,b,step=0;
int anw=0;
int moun[N][N];
int dp[N][N];
int dir[4][2]={{1,0},{0,1},{-1,0},{0,-1}};
using ...
分类:
其他好文 时间:
2014-08-12 17:21:46
阅读次数:
150
以下是总结自他人博客资料,以及本人自己的学习经验。
【Baby_Step,Gaint_Step定义】
高次同余方程。 BL == N (mod
P)
求解最小的L。由于数据范围很大,暴力不行
这里用到baby_step,giant_step算法。意为先小步,后大步。
令L=i*m+j (m=ceil(sqrt(p-1))),
那么原式化为 B^(i*m)*B^j=...
分类:
其他好文 时间:
2014-08-12 13:48:24
阅读次数:
222