码迷,mamicode.com
首页 >  
搜索关键字:move    ( 6147个结果
matlab 图像的几何变换
图像如果向前映射有效率低,不完成等缺点,所以一般我们使用向后映射。(1)平移:I = imread('apostles.jpg');I = double(I);B = zeros(size(I));H = size(I);move_x = 100;move_y = 150;B(move_y + 1....
分类:其他好文   时间:2015-03-16 14:13:59    阅读次数:153
Android----paint触摸轨迹监听
paint触摸轨迹监听,主要是三种而已,ACTION_DOWN,ACTION_MOVE,ACTION_UPpublic boolean onTouchEvent(MotionEvent event){ int action = event.getAction(); float x = eve...
分类:移动开发   时间:2015-03-16 12:30:47    阅读次数:173
LeetCode --- 62. Unique Paths
题目链接:Unique Paths 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 try...
分类:其他好文   时间:2015-03-15 23:45:04    阅读次数:386
LeetCode --- 64. Minimum Path Sum
题目链接:Minimum Path Sum Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its path. Note: You can only move ei...
分类:其他好文   时间:2015-03-15 23:44:17    阅读次数:329
[Leetcode]Unique Paths
A robot is located at the top-left corner of amxngrid (marked 'Start' in the diagram below).The robot can only move either down or right at any point ...
分类:其他好文   时间:2015-03-15 23:31:23    阅读次数:132
A*搜索算法的JAVA实现 解棋盘爵士游历问题 BFS
A knight moves on a chessboard two squares up, down, left, or right followed by one square in one of the two directions perpendicular to the first part of the move (i.e., the move is L-shaped). Suppos...
分类:编程语言   时间:2015-03-15 12:27:03    阅读次数:181
oracle移动表
oracle移动表 在创建表时可以为表指定存储空间,如果不指定,oracle会将该表存储到默认的表空间中。根据需要可以将表从一个表空间移动到另一个表空间中。语法如下: alter table table_name move tablespace tablespace_name; SQL> select table_name,tablespace_name from user_tables; ...
分类:移动开发   时间:2015-03-15 07:06:52    阅读次数:145
我的测试
#import "ViewController.h"@interface ViewController ()-(IBAction)move:(UIButton *)btn;-(IBAction)big;-(IBAction)small;-(IBAction)leftRotata;-(IBAction...
分类:其他好文   时间:2015-03-14 12:21:41    阅读次数:92
Triangle
Triangle问题:Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.思路: 简单的动态规划问题我....
分类:其他好文   时间:2015-03-13 20:35:52    阅读次数:151
【leetcode】Unique Paths
A robot is located at the top-left corner of amxngrid (marked 'Start' in the diagram below).The robot can only move either down or right at any point ...
分类:其他好文   时间:2015-03-12 22:05:04    阅读次数:148
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!