模拟汉诺塔的移动过程,CC答案的面向对象的太烦,写个以前学的经典的。public class Solution { public void move(int n, char a, char b, char c) { if (n == 1) { System....
分类:
其他好文 时间:
2014-08-20 01:19:25
阅读次数:
184
最小时就都当69,最大时都当85
。。
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
#define N 5000
int av, n;
int s[N];
double go(int x){
if(x< 60)return...
分类:
其他好文 时间:
2014-08-19 20:54:05
阅读次数:
215
原文:一个简单的带序列号输入的安装包首先建立一个Installscript Project
在Installation Designer中,找到Behavior and Logic -> Install Script, 在Setup.rul中找到Before Move Data -> OnFirst...
分类:
其他好文 时间:
2014-08-19 18:53:05
阅读次数:
185
【extern】 extern修饰符用于声明在外部实现的非托管方法。 Theexternkeyword is also used as a method modifier, declaring a method written in unmanaged code. [DllImport("av...
分类:
其他好文 时间:
2014-08-18 18:06:12
阅读次数:
221
网格路径问题,中文翻译如下:
从 22的格子的左上角开始,只允许向右和向下移动,一共有六种路径可以抵达右下角
那么在2020的路径中一共有多少条这样的路径?
原题如下:
Starting in the top left corner of a 22 grid,
and only being able to move to the right and down...
分类:
编程语言 时间:
2014-08-18 16:33:02
阅读次数:
232
对于像UVA 11987 Almost Union-Find这样的题目,要求把一个元素从一个集合中剥离的情况,我们只需要新建一个节点然后………. 还是看代码吧: inline void move(int x,int y) // 把x从y集合中剥离{ int fx = find(id[x]),fy =...
分类:
其他好文 时间:
2014-08-16 14:58:50
阅读次数:
231
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-15 23:47:19
阅读次数:
302
那些留下来的歌1, 那些花儿 ,范玮琪2, 哀愁 ,辛晓琪3, 猜不透 ,丁当4, 寂寞的季节 ,陶喆5, promise ,山岡晃6, everybody hurts ,Avril Lavigne7, The sound of silence ,Simon & Garfunkel8, 17 ,Av...
分类:
其他好文 时间:
2014-08-15 21:05:59
阅读次数:
247
A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below).The robot can only move either down or right at any point in time. The robot is trying to reach the bottom-right corner of the grid (marked 'Finish' in the diag...
分类:
其他好文 时间:
2014-08-15 09:32:37
阅读次数:
200
pair 是 一种模版类型。每个pair 可以存储两个值。这两种值无限制,可以是tuple,vector ,string,struct等等。
首先来看一下pair的函数
初始化,复制等相关操作如下:
default (1)
constexpr pair();
copy / move (2)
template pair (const pair...
分类:
编程语言 时间:
2014-08-15 00:02:36
阅读次数:
241