码迷,mamicode.com
首页 >  
搜索关键字:rotate    ( 1470个结果
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./***D...
分类:其他好文   时间:2014-06-04 20:44:57    阅读次数:227
Rotate Image
You are given annxn2D matrix representing an image.Rotate the image by 90 degrees (clockwise).Follow up:Could you do this in-place?classSolution{publi...
分类:其他好文   时间:2014-06-04 20:25:09    阅读次数:227
DOM时钟
使用JS使时钟运动DOM运动,主要操作css3中transform:rotate();计时器setInterval(),setTimeout(),如何防止时钟偷停;时钟的时针、分针、秒针的运动的度数之比; Clock
分类:其他好文   时间:2014-06-04 15:20:40    阅读次数:240
css3 翻转和旋转的差别
我曾经一直以为旋转跟翻转一样,今日自己旋转了好久都发觉跟翻转差一点点,纠结了十几分钟才明确,仅仅能怪自己的立体感太差了。 css3中的transform中有旋转,放缩,倾斜,平移的功能,分别相应的属性是:rotate,scale,skew,translate 旋转:(rotate)...
分类:Web程序   时间:2014-06-02 21:28:50    阅读次数:307
HNOI2004宠物收养所(平衡树)
treap!var i,n,x,y,ans,a,b,root,tot,ft:longint; l,r,s,v,hr:array[0..100000] of longint;procedure r_rotate(var x:longint); var y:longint; begin y:=l[...
分类:其他好文   时间:2014-06-02 11:50:43    阅读次数:181
【LeetCode】Rotate Image
Rotate ImageYou are given an n x n 2D matrix representing an image.Rotate the image by 90 degrees (clockwise).Follow up: Could you do this in-place?最简...
分类:其他好文   时间:2014-05-29 23:02:38    阅读次数:254
css3 - 3D transform 变化
3d 视图效果,x/y/z轴的说明图1 rotateX( angle )2 rotateY( angle )3 rotateZ( angle )4 rotate旋转的意思,rotateX旋转X轴,rotateY旋转Y轴,rotateZ旋转Z轴rotateX、rotateY、rotateZ、rotat...
分类:Web程序   时间:2014-05-28 16:15:02    阅读次数:461
LeetCode: Rotate Image [047]
【题目】 You are given an n x n 2D matrix representing an image. Rotate the image by 90 degrees (clockwise). Follow up: Could you do this in-place? 【题意】 给定一个nXn的二维矩阵,按时钟方向旋转90度,不能使用额外的数据结构 【思路】 从外向内逐层旋转...
分类:其他好文   时间:2014-05-26 05:50:25    阅读次数:266
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-05-26 00:06:39    阅读次数:250
LeetCode: Rotate List [060]
【题目】 Given a list, rotate the list to the right by k places, where k is non-negative. For example: Given 1->2->3->4->5->NULL and k = 2, return 4->5->1->2->3->NULL. 【题意】 给定一个链表L,和非负数K,要求把链表的后k个节点移到链表前 【思路】 先将指针指向指向倒数第K个节点,然后...
分类:其他好文   时间:2014-05-25 18:20:06    阅读次数:252
1470条   上一页 1 ... 143 144 145 146 147 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!