码迷,mamicode.com
首页 >  
搜索关键字:move    ( 6147个结果
Uva 11489 - Integer Game
Two players, S and T, are playing a game where they make alternate moves. S plays first.  In this game, they start with an integer N. In each move, a player removes one digit from the integer and p...
分类:其他好文   时间:2014-06-10 06:31:29    阅读次数:302
LeetCode: Triangle [120]
【题目】 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 following triangle [ [2], [3,4], [6,5,7], [4,1,8,3] ] The minimum path sum from top to...
分类:其他好文   时间:2014-06-08 17:52:45    阅读次数:235
uva 101 The Blocks Problem (基本算法-模拟)
uva 101 The Blocks Problem (基本算法-模拟) 题目大意: 问题就是分析一系列的命令,告诉机械臂如何操纵放在一个平台上的积木。最初平台上有n个积木(编号由0到n - 1),对于任意的0 ≤ i < n - 1,积木bi都与bi + 1相临 机械臂操作积木的有效指令列举如下: (1)move a onto b a和b都是积木的编号,先将a和b上面所有的积木都放回原处,再将a放在b上。 (2)move a over b a和b都是积木的编号,先将a上面所有的积木放回原处,再将a放在b上...
分类:其他好文   时间:2014-06-08 15:49:01    阅读次数:220
POJ 1573 Robot Motion.
Description A robot has been programmed to follow the instructions in its path. Instructions for the next direction the robot is to move are laid down in a grid. The possible instructions are  ...
分类:其他好文   时间:2014-06-08 04:38:32    阅读次数:386
重构摘要7_在对象之间搬移特性
《重构-改善既有代码的设计》Martin Fowler 摘要: 第七章 在对象之间搬移特性 Move Method 搬移函数 你的程序中,有个函数与其所驻类之外的另一个类进行更多交流:调用后者,或被后者调用 在该函数最常引用的类中建立一个有着类似行为的新函数。将旧函数变成一个单纯的委托函数,或者将旧函数完全移除。 Move Field 搬移字段 某个字段被其所驻类之外...
分类:其他好文   时间:2014-06-07 15:18:01    阅读次数:171
用Windows Live Writer 2012发博客
一、软件准备: 最新版的是Windows Live Writer 2012,但是不提供单独的安装包,它是和微软其它软件一起的(包括MSN、Window Move Maker等),软件大小为131M,官方下载地址:http://g.live.com/1rewlive5-all/zh-cn/wlsetu...
分类:Windows程序   时间:2014-06-06 20:02:43    阅读次数:472
[leetcode]Triangle @ Python
原题地址:https://oj.leetcode.com/problems/triangle/题意:Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent n...
分类:编程语言   时间:2014-06-06 17:31:34    阅读次数:397
string系列操作
一、Move操作varpSource,pDest:PChar;len:integer;.......................//一些代码Move(pSource,pDest,len);//错误Move(pSource^,pDest^,len);//正确,根据Move函数: S:=PCha.....
分类:其他好文   时间:2014-06-05 16:40:17    阅读次数:143
vim快捷键
键盘移动 (Move)一切都从键盘的移动k-> 上 upj-> 下 downh-> 左 leftl-> 右 rightz-> 重画屏幕,当前光标变成屏幕的第一行 (redraw current line at top of window)CTRL-f-> 跳到下一页 (page down)CTRL-...
分类:其他好文   时间:2014-06-05 15:48:07    阅读次数:354
POJ1573——Robot Motion
Robot MotionDescriptionA robot has been programmed to follow the instructions in its path. Instructions for the next direction the robot is to move ar...
分类:其他好文   时间:2014-06-04 17:56:00    阅读次数:247
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!