码迷,mamicode.com
首页 >  
搜索关键字:complete    ( 2283个结果
Lufylenged引擎学习——LLoader、LBitmap
FPS(Frames Per Second):每秒传输帧数。 【代码练习】 LLoader类可用于加载图像(JPG、PNG或GIF)文件。使用load()方法来启动加载。 LLoader.load('URl','bitmapData'); LEvent COMPLETE  图片加载完成事件 l...
分类:其他好文   时间:2015-08-11 18:47:35    阅读次数:287
jQuery 插件
jQuery 动画jQuery----easing.js插件用法介绍 1 2 具体参数细节:duration 选项:毫秒数complete 选项:完成后调用easing 选项:jswingdefeaseInQuadeaseOutQuadeaseInOutQuadeaseInCubiceaseO...
分类:Web程序   时间:2015-08-10 17:51:43    阅读次数:171
jQuery效果之滑动
.slideUp([duration][,complete])——目标元素向上滑入隐藏; .slideDown([duration][,complete])——目标元素向下滑出显示; .slideToggle([duration][,complete])——目标元素隐藏则向下滑出显示,否则向上滑入隐藏; 注:duration为方法执行的时间区间,complete为回调函数。 ...
分类:Web程序   时间:2015-08-10 01:58:53    阅读次数:156
jQuery效果之显示与隐藏
hide([duration][,complete])——目标元素的隐藏; show([duration][,complete])——目标元素的显示; toggle([duration][,complete])——当目标元素隐藏时则显示,否则隐藏; 注:可选参数[duration]为方法执行的时间间隔;[,complete]为回调函数。 显示与隐藏 ...
分类:Web程序   时间:2015-08-10 00:27:28    阅读次数:174
jQuery效果之淡入淡出
.fadeOut([duration][,complete])——目标元素淡出隐藏; .fadeIn([duration][,complete])——目标元素淡入显示; .fadeToggle([duration][,complete])——目标元素隐藏则淡入显示,否则淡出隐藏; .fadeTo(duration,opacity[,complete])——将目标元素以渐进方式调整到指定的...
分类:Web程序   时间:2015-08-10 00:22:19    阅读次数:266
【Android基础篇】AutoCompleteTextView和MultiAutoCompleteTextView
从名称上可看出来,这两个控件都是用于输入信息的TextView,AutoComplete已表明这两个控件内容输入都是自动完成的。区别在于一个是Multi,一个不是,具体的区别可通过下面的内容看出来。下面分别介绍着两个控件的使用。AutoCompleteTextView功能动态匹配输入的内容,如搜索引擎在输入框输入信息时,会有一个下拉列表显示与当前输入内容有关的信息。控件特有属性如同width、hei...
分类:移动开发   时间:2015-08-09 17:18:38    阅读次数:189
8.8 LeetCode 222 Count Complete Tree Nodes
Question:Count Complete Tree NodesTotal Accepted:11040Total Submissions:53992My SubmissionsQuestionSolutionGiven acompletebinary tree, count the numbe...
分类:其他好文   时间:2015-08-09 00:18:23    阅读次数:148
[leedcode 222] Count Complete Tree Nodes
Given acompletebinary tree, count the number of nodes.Definition of a complete binary tree fromWikipedia:In a complete binary tree every level, except...
分类:其他好文   时间:2015-08-07 23:53:56    阅读次数:135
LeetCode222 Count Complete Tree Nodes
对于一般的二叉树,统计节点数目遍历一遍就可以了,但是这样时间复杂度O(n),一下就被卡住了。这题首先要明白的是,我们只需要知道叶子节点的数目就能统计出总节点树。想法1: 既然是完全二叉树,我肯定是从左子树开始看,如果左子树不完整,右子树就不用再遍历了。由此形成一个递归的搜索过程,先搜索左子树,如果....
分类:其他好文   时间:2015-08-07 22:02:19    阅读次数:133
(medium)LeetCode 222.Count Complete Tree Nodes
Given acompletebinary tree, count the number of nodes.Definition of a complete binary tree fromWikipedia:In a complete binary tree every level, except...
分类:其他好文   时间:2015-08-07 19:00:01    阅读次数:139
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!