Find the contiguous subarray within an array (containing at least one number) which has the largest product. For example, given the array [2,3,-2,4],t...
分类:
其他好文 时间:
2014-10-15 12:52:20
阅读次数:
160
OTT是OCI中访问对象类型数据的重要工具,它将数据库中的对象数据类型或集合类型映射为C++中的结构体类型。OTT是Oracle自带的,但是使用前必须配置一下环境变量。在计算机->属性->环境变量中新建环境变量ORACLE_HOME,其值为:H:\app\XXX\product\11.2.0\d.....
分类:
数据库 时间:
2014-10-14 23:39:39
阅读次数:
279
update `dede_arctype` set `templist`='{style}/products.htm' where `templist`='{style}/Product.htm'dede_arctype :表名称templist :条件字段{style}/products...
分类:
数据库 时间:
2014-10-14 13:33:08
阅读次数:
161
最大子序列积问题??
leetcode
Find the contiguous subarray within an array (containing at least one number)
线性时间算法...
分类:
其他好文 时间:
2014-10-13 23:44:27
阅读次数:
254
一、抽象工厂(Abstract Factory)模式抽象工厂模式是全部形态的工厂模式中最为抽象和最具一般性的一种形态。为了方便引进抽象工厂模式,引进一个新概念:产品族(Product Family)。所谓产品族,是指位于不同产品等级结构,功能相关联的产品组成的家族。如图:图中一共同拥有四个产品族,分...
分类:
其他好文 时间:
2014-10-13 21:30:57
阅读次数:
255
******************建立表空间和用户名
/*第1步:创建数据表空间 */
create tablespace flx
logging
datafile 'E:\oracle\product\10.2.0\oradata\orcl\flx.dbf'
size 50m
autoextend on
next 50m maxsize 20480m
...
分类:
数据库 时间:
2014-10-13 19:59:47
阅读次数:
269
Find the contiguous subarray within an array (containing at least one number) which has the largest product.For example, given the array[2,3,-2,4],the...
分类:
其他好文 时间:
2014-10-12 17:19:08
阅读次数:
209
一、安装LogMiner1、@D:\app\product\11.1.0\db_1\RDBMS\ADMIN\dbmslm.sql2、@D:\app\product\11.1.0\db_1\RDBMS\ADMIN\dbmslmd.sql二、配置LogMiner文件夹 CREATE DIRECTORY ...
分类:
数据库 时间:
2014-10-11 20:51:36
阅读次数:
298
原题地址:https://oj.leetcode.com/problems/maximum-product-subarray/解题思路:主要需要考虑负负得正这种情况,比如之前的最小值是一个负数,再乘以一个负数就有可能成为一个很大的正数。代码:class Solution: # @param A...
分类:
编程语言 时间:
2014-10-11 20:28:16
阅读次数:
238
安装rac10g,出现如下错误:
[root@rac2 oracle]# /u01/product/crs/root.sh
WARNING: directory '/u01/product' is not owned by root
Checking to see if Oracle CRS stack is already configured
/etc/oracle does no...
分类:
其他好文 时间:
2014-10-11 17:29:05
阅读次数:
241