码迷,mamicode.com
首页 >  
搜索关键字:iteration    ( 266个结果
[软工]老师对大作业的答疑(一)
2016-03-23 问题1. About the Iteration number column in the backlog template Our group can't really understand what iteration means even after reading th ...
分类:其他好文   时间:2016-03-27 10:53:15    阅读次数:142
求1+2!+3!+...+20!的和
这种题用递归或者迭代都可以,按自己喜欢的来:迭代的算法:public class Iteration{public static void main(String[] args){int s=0;int s1;for (int i=1;i<=20;i++){s1=1;for (int j=1;j<=
分类:其他好文   时间:2016-03-18 21:42:10    阅读次数:142
jquery模板渲染
一。doT.js详细介绍 doT.js特点是快,小,无依赖其他插件。官网:http://olado.github.iodoT.js详细使用介绍 使用方法:{{= }} for interpolation{{ }} for evaluation{{~ }} for array iteration{{?
分类:Web程序   时间:2016-02-05 02:02:10    阅读次数:243
Jan 26 - Unique Binary Search Trees; DP; Trees; Recursion & Iteration;
Use DP to generate unique distinct binary trees;Create to two integer value, one "start" to represent the lowest value, and the other "end" to represe...
分类:其他好文   时间:2016-01-27 10:45:04    阅读次数:204
Jan 19 - Rotate List; Linked List; Two Pointers; Iteration & Recursion;
Use 3 pointers each of them points to the address of Head, The node before Tail and Tail node; When rotating the list step by step, tail.next = head; ...
分类:其他好文   时间:2016-01-20 07:36:05    阅读次数:167
Jan 18 - Maximum Subarray; DAC; DP; Array;
Iteration:public class Solution { public int maxSubArray(int[] nums) { int start = 0, end = nums.length-1; //return sumSubArray(nums,...
分类:其他好文   时间:2016-01-19 08:00:26    阅读次数:141
Jan 16 - Search Insert Position; Array; Binary Search; Iteration&Recursion;---Iteration再补上
Recursion:代码:public class Solution { public int searchInsert(int[] nums, int target) { int len = nums.length; if(len == 0) return 0; ...
分类:其他好文   时间:2016-01-17 06:29:40    阅读次数:131
jquery插件范例代码
// 创建一个闭包 (function($) { // 插件的定义 $.fn.hilight = function(options) { debug(this); // build main options before element iteration ...
分类:Web程序   时间:2016-01-12 11:37:31    阅读次数:171
Jan 10 - Reverse Linked List;Data Structure; Linked List; Pointer; Iteration & Recursion
Iteration:代码:/** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; }...
分类:其他好文   时间:2016-01-11 14:06:22    阅读次数:94
Loadrunner中参数化实战(7)-Unique+Each iteration
参数化数据30条:脚本如下,演示登录,投资,退出操作是,打印手机号:首先验证Vugen中迭代:Unique+Each iteration设置迭代4次Action结果如下:
分类:其他好文   时间:2015-12-25 19:07:02    阅读次数:157
266条   上一页 1 ... 16 17 18 19 20 ... 27 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!