码迷,mamicode.com
首页 >  
搜索关键字:ade    ( 7748个结果
/etc/rc.d/rc.local实现oracle 10g自启动
环境:redhat5.964位,oracle10g1.修改dbstart脚本:$vi$ORACLE_HOME/bin/dbstart#ORACLE_HOME_LISTNER=/ade/vikrkuma_new/oracleORACLE_HOME_LISTNER=$ORACLE_HOME2.修改/etc/oratab为如下格式:$vi/etc/oratabSID:$ORACLE_HOME:Y注:上述SID和$ORACLE_HOME要换成真实内容,例..
分类:数据库   时间:2015-10-13 19:23:34    阅读次数:318
二叉树前序,中序,后序练习
基础: 前序:(根、左、右)——》先访问根节点,然后遍历左子树,最后遍历右子树。 中序:(左、根、右) 后序:(左、右、根)前序:GDAFEMHZ中序:ADEFGHMZ思路:1. 通过前序得到根节点G 2.由G 通过中序得到 左侧子树为ADEF,右侧为HMZ 3.观察左子树ADE...
分类:其他好文   时间:2015-09-23 21:17:07    阅读次数:270
[转]使用Cadence ADE + Spectre做Montel Carlo仿真
1.工艺模型的选择。以TSMC 180nm工艺为例,1.8V Normal devices 有TT,SS,FF,SF,FS共5种工艺Corner及Montel Carlo(MC)共6种可选用工艺角。在每种Corner中每种类型的管子又有两种类型,比如NMOS有nch和nch_mis两种,其中第nch...
分类:其他好文   时间:2015-08-09 18:46:02    阅读次数:221
NET设计模式 第二部分 结构性模式(11):外观模式(Façade Pattern)
外观模式(Façade Pattern)——.NET设计模式系列之十二Terrylee,2006年3月概述 在软件开发系统中,客户程序经常会与复杂系统的内部子系统之间产生耦合,而导致客户程序随着子系统的变化而变化。那么如何简化客户程序与子系统之间的交互接口?如何将复杂系统的内部子系统与客户程序之间的...
分类:Web程序   时间:2015-08-02 18:07:07    阅读次数:192
Lightoj 1043 - Triangle Partitioning【二分】
题目链接:http://lightoj.com/volume_showproblem.php?problem=1043题意:一个三角形ABC,DE//BC,已知三角形ADE和四边形BDEC的面积的比,求AD的长度。解法:二分AD边即可代码:#include #include #include #include #includ...
分类:其他好文   时间:2015-07-23 22:02:31    阅读次数:204
python正则常用函数
compile编译后执行速度更快,findall返回匹配列表>>>importre>>>r=r‘a[bcd]e‘>>>p=re.compile(r)>>>printp.findall(‘abe,ace,ade,afe‘)[‘abe‘,‘ace‘,‘ade‘]>>>printre.findall(r,‘abe,ace,ade,afe‘)[‘abe‘,‘ace‘,‘ade‘]>>&..
分类:编程语言   时间:2015-07-20 17:07:38    阅读次数:230
设计模式之八:外观模式(Facade)
外观模式: 为子系统中的一系列接口提供了一个统一的界面。外观模式定义了一个高层次的接口以使子系统更加容易使用。Provide a unified interface to a set of interfaces in a subsystem. Façade defines a higher-level interface that makes the subsystem easier to us...
分类:其他好文   时间:2015-06-06 12:10:53    阅读次数:265
How to check in your files in ADE
1, copy all your files under the folder (Filezilla) 2, Come to the ADE command prompt and navigate to the folder which you have copied files and execute the command "ade mkelem -nc " 3, ade ci -nc -...
分类:其他好文   时间:2015-05-18 18:54:03    阅读次数:555
[转] 设计模式 -- Facade
PS:Façade模式注重简化接口,Adapter模式注重转换接口,Bridge模式注重分离接口(抽象)与其实现,Decorator模式注重稳定接口的前提下为对象扩展功能。Facade模式 Facade模式要求一个子系统的外部与其内部的通信必须通过一个统一的Facade对象进行。Facade模式提....
分类:其他好文   时间:2015-04-17 15:28:55    阅读次数:150
.NET设计模式(12):外观模式(Façade Pattern)(转)
概述在软件开发系统中,客户程序经常会与复杂系统的内部子系统之间产生耦合,而导致客户程序随着子系统的变化而变化。那么如何简化客户程序与子系统之间的交互接口?如何将复杂系统的内部子系统与客户程序之间的依赖解耦?这就是要说的Façade 模式。意图为子系统中的一组接口提供一个一致的界面,Facade模式定...
分类:Web程序   时间:2015-03-07 15:34:10    阅读次数:244
7748条   上一页 1 ... 772 773 774 775 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!