最近重温《数据结构》,发现其中的东西我上学的时候几乎都没写过。。。 惭愧啊。于是打算一一写点。算是对我逝去青春的纪念。。。avl树的代码网上有很多, 这个在平衡二叉树里面算是比较简单的。 需要注意的就是树的平衡因子和其子树的平衡因子符号相反的旋转情况。这个在函数avl_rotate_right等中有...
分类:
其他好文 时间:
2014-12-25 09:57:38
阅读次数:
219
Image transformation is a process of rotating and scaling images. Rotating Images There are two ways to rotate an image. First option is to use the Ro...
题目:
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?
思路:
题目的关键在in-place,否则就太容易了,为了达到in-place只能...
分类:
其他好文 时间:
2014-12-24 22:46:59
阅读次数:
138
【资料整理】sudo的使用
编辑:
visudo
实例:
赋予user1通过sudo来执行coreseek的2个命令的权限
#visudo
user1ALL=NOPASSWD:/data/svr/coreseek/bin/coreseek_ctl.sh,/data/svr/coreseek/bin/indexer_rotate.sh
#suuser1
$sudo/data/svr/coreseek/bin/
crontab_init.shcor..
分类:
其他好文 时间:
2014-12-24 18:22:31
阅读次数:
245
canvas元素在html5中的重要性非同一般。配合JS让我们实现了在浏览器页面中作画的强大功能。不再单单依靠图片,flash等外部文件,减少http请求,从而网页加载速度更加快捷。简单的线段:看个小演示 canvas小房子不用函数累死人。。。。旋转:使用提供的rotate()方法。需要注意的是,在...
分类:
Web程序 时间:
2014-12-23 00:11:04
阅读次数:
327
前两天做了一个关于贺卡制作的项目,项目要求上传图片 ,图片旋转,播放音乐等几个特效,今天讲讲图片旋转的问题,css3属性中有一个transform:rotate();大家最好写-webkit-transform:rotate();-moz-transform:rotate();这样控制好样式之后要控...
分类:
Web程序 时间:
2014-12-22 12:35:11
阅读次数:
244
class Solution {public: typedef ListNode * SNode; ListNode *rotateRight(ListNode *head, int k) { SNode pcurrent , pnext,ptemp; if(knext == NULL) ...
分类:
其他好文 时间:
2014-12-21 16:35:20
阅读次数:
106
在android中, Matrix的操作,总共分为translate(平移),rotate(旋转),scale(缩放)和skew(倾斜)四种,每一种变换在Android的API里都提供了set, post和pre三种操作方式,除了translate,其他三种操作都可以指定中心点。其中set是直接设置...
分类:
移动开发 时间:
2014-12-21 11:29:03
阅读次数:
179
Abstract. When you finish modeling objects in the scene, you must want to use some operations to view the scene objects, such as Pan, Zoom and Rotate ...
分类:
其他好文 时间:
2014-12-20 20:48:58
阅读次数:
377
平时工作中经常遇到需要transition动画结束后触发某个功能的问题,但是在映像中好像只见过animate的回调函数,而transition的很多属性无法在animate中使用,经过一些总结归纳,终于得出了transition回调函数的写法'transform', "rotate(180deg)"...
分类:
其他好文 时间:
2014-12-19 11:53:07
阅读次数:
380