码迷,mamicode.com
首页 >  
搜索关键字:rotate    ( 1470个结果
63. Swap Nodes in Pairs && Rotate List && Remove Nth Node From End of List
注意: 前两个互换的时候,head 要改变位置。还要有一个 pre 指针。注意: 前两个互换的时候,head 要改变位置。还要有一个 pre 指针。思路: 双指针。
分类:其他好文   时间:2014-09-09 10:30:28    阅读次数:292
processing rotate
voidsetup(){size(200,200);rectMode(CENTER);noFill();translate(100,100);for(inti=1;i<16;i++){rotate((PI/16)*i);rect(0,0,100,100);}}
分类:其他好文   时间:2014-09-09 09:10:58    阅读次数:211
processing box
voidsetup(){size(200,200,P3D);noFill();smooth();}voiddraw(){background(0);translate(width/2,height/2,-(width/2));rotateY(map(mouseX,0,width,-PI,PI));stroke(100);box(150);rotateX(map(mouseY,0,height,-PI,PI));stroke(150);box(75);}
分类:其他好文   时间:2014-09-09 09:10:49    阅读次数:348
[LeetCode] Rotate Image
public class Solution { public void rotate(int[][] matrix) { int n=matrix.length; for (int i=0; i<n/2; i++) { for (int j=i...
分类:其他好文   时间:2014-09-07 14:42:05    阅读次数:159
hdu 1890
区间翻转 一脸Splay。第一次做区间翻转。一开始懒惰标记表示当前这可子树都需要翻转。这样就有个问题:旋转的状态的不一定是正确的(rotate传的参数不一定正确)。然后参考ac代码。联系线段树的lazy标记,每次跟新某个区间的时候,该线段区间肯定要先跟新,再在改区间节点打上标记,表示后面的子区间节点...
分类:其他好文   时间:2014-09-07 12:16:05    阅读次数:327
Android自定义控件NumberCircleProgressBar(圆形进度条)的实现
NumberCircleProgressBar是一个基于Android的自定义圆形进度条,提供两种模式(rotate模式和rising_water模式),使用者可以自行定义文字颜色、文字大小、已完成进度的颜色、未完成进度的颜色等多个属性,同时提供了简单的例子以及多个style 以供参考!...
分类:移动开发   时间:2014-09-06 18:46:23    阅读次数:425
leetcode - Rotate List
Given a list, rotate the list to the right bykplaces, wherekis non-negative.For example:Given1->2->3->4->5->NULLandk=2,return4->5->1->2->3->NULL.这个题目主...
分类:其他好文   时间:2014-09-04 13:14:29    阅读次数:139
transform:rotate在手机上显示有锯齿的解决方案
transform:rotate在手机上显示有锯齿 解决方案也很简单, 利用外层容器的overflow:hidden 加上图片margin:-1px 就可以解决。
分类:移动开发   时间:2014-09-04 10:28:29    阅读次数:223
xml动画
anim中的四个xml文件:1.alpha.xml: 2.scale.xml 3.translate.xml: 4.rotate.xml: layout中的xml文件activity_main.xml: src中的.java文件M...
分类:其他好文   时间:2014-09-03 22:33:07    阅读次数:350
简单的动画效果
alpha.xml: rotate.xml: scale.xml: translate.xml: layout: Activity:public class MainActivity extends Activity implements OnClickListener{privat...
分类:其他好文   时间:2014-09-03 22:27:57    阅读次数:278
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!