码迷,mamicode.com
首页 >  
搜索关键字:翻转    ( 2706个结果
检测手机翻转
代码:- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. //监听手机方向改变事件 [[...
分类:移动开发   时间:2015-06-29 19:21:52    阅读次数:126
[LeetCode] Reverse Words in a String 翻转字符串中的单词
Given an input string, reverse the string word by word. For example,Given s = "the sky is blue",return "blue is sky the".Update (2015-02-12):For C pro...
分类:其他好文   时间:2015-06-29 08:45:03    阅读次数:119
[LintCode] 翻转二叉树
递归实现: 1 /** 2 * Definition of TreeNode: 3 * class TreeNode { 4 * public: 5 * int val; 6 * TreeNode *left, *right; 7 * TreeNode(int v...
分类:其他好文   时间:2015-06-28 16:52:40    阅读次数:121
15个最佳jQuery的翻页书效果的例子
在这里,你会发现15的jQuery的翻页书的插件,提供了良好的页面翻转的经验,并帮助创建类似书本的效果。 jQuery的增添了一道亮丽的过渡到实际的页面在一本书或杂志HTML5。1. BookBlock: jQuery内容翻转插件BookBlock是可以将任何内容,如图像或文本创建小册子的组件,允许...
分类:Web程序   时间:2015-06-27 19:41:04    阅读次数:333
字符串翻转
比如将"vpoet" 变为“teopv” #include using namespace std; int main() { char Before_Str[100]={0}; cout<<"******************************vpoet*********************************\n"; cout<<"Please inpu...
分类:其他好文   时间:2015-06-26 16:17:33    阅读次数:92
贪心 Codeforces Round #309 (Div. 2) B. Ohana Cleans Up
题目传送门 1 /* 2 题意:某几列的数字翻转,使得某些行全为1,求出最多能有几行 3 想了好久都没有思路,看了代码才知道不用蠢办法,匹配初始相同的行最多能有几对就好了,不必翻转 4 */ 5 #include 6 #include 7 #include 8 #include...
分类:其他好文   时间:2015-06-26 13:25:44    阅读次数:106
Css3图片翻转
Css3图片翻转 按 钮
分类:Web程序   时间:2015-06-26 12:35:59    阅读次数:161
【备忘录】javascript字符串翻转
var fruit = "apple banana pear";var arr = fruit.split(' ');for (var i = 0; i < arr.length; i++) { arr[i] = arr[i].split('').reverse().join('');}v...
分类:编程语言   时间:2015-06-25 16:59:59    阅读次数:134
浏览器用户用滤镜实现网页的翻转效果
html{filter:fliph}body{-webkit-transform:rotateY(180deg);-moz-transform:skew(0deg,180deg)scale(-1,1);-o-transform:skew(0deg,180deg)scale(-1,1);transfo...
分类:Web程序   时间:2015-06-24 12:38:58    阅读次数:143
leetcode 226 Invert Binary Tree 翻转二叉树
大牛没有能做出来的题,我们要好好做一做     Invert a binary tree. 4 / 2 7 / \ / 1 3 6 9 to 4 / 7 2 / \ / 9 6 3 1 Trivia: This problem was inspired...
分类:其他好文   时间:2015-06-24 00:49:34    阅读次数:169
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!