码迷,mamicode.com
首页 >  
搜索关键字:summary    ( 3315个结果
教程:Spagobi开源BI系统 Console报表设计教程
Console Designer1 Console DesignerConsole Designer1.1 Introduction1.2 Dataset Tab1.3 Summary Panel Tab1.4 Detail Panel Tab1.5 Deploy1.1 IntroductionIn...
分类:其他好文   时间:2015-01-18 13:07:04    阅读次数:739
微软企业库DBBA的研究
Summary:如何入门使用Data Access Application Block,可以参考Enterprise Library 3.1中文帮助:数据访问应用程序块。这篇文章侧重在DAAB工作原理、代码结构上的一些注解。DAAB中抽象类Database提供了针对数据库操作的接口,从它派生出来的各...
分类:数据库   时间:2015-01-13 11:55:20    阅读次数:366
oracle缩写与术语
术语 定义活动会话池 资源组或子计划允许的当前活动会话数ADDM Automatic Database Diagnostic Monitor(自动数据库诊断监视程序)ASM Automatic Storage Management(自动存储管理)ASM Automatic Summary M...
分类:数据库   时间:2015-01-11 17:37:37    阅读次数:191
[leetcode summary] Dynamic Programming
套路:一般有两个string的时候 都建二维的数组来存。int[][] dp =new int[len+1][len+1];初始情况已设立dp[0][0] = 1;递归循环for()dp[i][j] = dp [i-1][j];交答案dp[len][len]
分类:其他好文   时间:2015-01-05 23:29:58    阅读次数:290
四个DBHelper实现
0. 建一个通用的处理数据的类 [csharp] view plaincopyprint? using System;  using System.Data;  using System.Data.SqlClient;  using System.Text;  namespace Document  {      /**////       /// Summary...
分类:数据库   时间:2015-01-05 11:18:59    阅读次数:225
Summary: gcd最大公约数算法
欧几里德算法欧几里德算法又称辗转相除法,用于计算两个整数a,b的最大公约数。其计算原理依赖于下面的定理:定理:gcd(a,b) = gcd(b,a mod b)证明:a可以表示成a = kb + r,则r = a mod b假设d是a,b的一个公约数,则有d|a, d|b,而r = a - kb,因...
分类:编程语言   时间:2015-01-04 01:08:17    阅读次数:243
[leetcode summary] Backtracing
主线是reshelper(res);dfs();helper(res,num,curr, index, resultOne, visited..){ if(curr==num) 1 res.add(resultOne); 2 res.add(new resultOne); e...
分类:其他好文   时间:2015-01-03 02:03:03    阅读次数:136
[leetcode Summary] BFS
BFS有固定的套路 类似下面这个形式ArrayList queue = new ArrayList();queue.add(root);while(!queue.isEmpty()){ String temp = queue.poll(); for(neigbor : t...
分类:其他好文   时间:2015-01-01 12:29:05    阅读次数:125
微软职位内部推荐-Software Development Engineer II
微软近期Open的职位:SDE IIOrganization Summary:Engineering, Customer interactions & Online (ECO) is looking for a great "Software Development Engineer" to joi...
分类:其他好文   时间:2015-01-01 12:27:12    阅读次数:118
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!