码迷,mamicode.com
首页 >  
搜索关键字:iteration    ( 266个结果
GetStartPosition和GetNextAssoc的作用
这几个函数是用于集合遍历的,类似于STL的迭代(iteration),POSITION就是MFC的迭代器(iterator),GetStartPosition是取第一个迭代器,GetNextAssoc是取出当前元素然后向后移动迭代器。 -----------------------------------------------------------------------------...
分类:其他好文   时间:2014-08-26 09:52:45    阅读次数:242
loadrunner基础
1,在场景运行中,每次迭代的过程中,虚拟用户对参数的取值规则(五个虚拟用户,有一个参数username,其值从1到100) 1)Sequential - each iteration (顺序-每次迭代) 每个用户的每次迭代的值顺序取,然后值都一...
分类:其他好文   时间:2014-08-16 19:53:01    阅读次数:187
css3 animation
animation:animation-name | animation-duration | animation-timing-function | animation-delay | animation-iteration-cout | animation-direction | a...
分类:Web程序   时间:2014-08-15 19:12:49    阅读次数:237
LeetCode "Pow(x,n)"
Next time you see a numeric problem has a too straightforward solution, think about optimized one.Like this one: recursion\iteration is tooo slow. SoD...
分类:其他好文   时间:2014-08-01 06:57:01    阅读次数:279
递归和迭代(Recursion and Iteration)
递归特点:简而言之,递归就是应用程序调用自身。所以,存在预期收敛,才能使用递归(因为不能无限期递归调用下去)。优点:程序看着比较简单,比较容易实现。缺点:递归要占用额外的栈空间,如果递归的深度比较大,那么占用的栈比较多,而且调用函数的时间也比较多,时空性都不好。所以选择递归要考虑好处和缺点之间的权衡...
分类:其他好文   时间:2014-07-30 00:18:22    阅读次数:362
复制"尹琼洁"的博客 webkit-animation css3 动画
-webkit-animation:仍旧是一个复合属性,-webkit-animation: name duration timing-function delay iteration_count direction;包括以下几个属性(1) -webkit-animation-name 这个属性的....
分类:Web程序   时间:2014-07-23 14:51:26    阅读次数:276
LeetCode "Sqrt(x)"
2 solutions: bin-search and Newton iteration.class Solution {public: int _sqrt(long long tgt, long long i0, long long i1) { long long can...
分类:其他好文   时间:2014-07-23 12:02:06    阅读次数:236
拉格朗日乘子法 那些年学过的高数
最近在做通信网络相关的仿真,今天拿到了一些别人仿真的代码来学习,其中看到了一个double Lambda[T_Node_Number][M][Low_iteration];的参数,注释写着拉格朗日乘子式。本来对于这个名词感觉很陌生,后来查了一些资料,才回忆起这似乎是大一高数曾经学过的知识,经查书.....
分类:其他好文   时间:2014-07-22 00:06:34    阅读次数:269
The Jordan 3lab5 is the perfect sneaker for you
The Jordan 5 3Lab5 Metallic Silver returns inside a mind-turning new iteration for that Spring/Summer time 2014 season. Getting together the very best...
分类:其他好文   时间:2014-07-18 15:25:12    阅读次数:231
python学习(3)
Python学习(3)切片(Slice):根据索引范围取出字符串里面的内容,比如: l=range(100) l[:8] [0, 1, 2, 3, 4, 5, 6, 7] l[:10:2] [0, 2, 4, 6, 8]list、tuple、set 、字符串都可以做切片操作迭代(iteration)...
分类:编程语言   时间:2014-07-09 14:48:16    阅读次数:160
266条   上一页 1 ... 24 25 26 27 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!