码迷,mamicode.com
首页 >  
搜索关键字:ora-04031 obj stat memo version count    ( 69204个结果
Distinct Subsequences
Given a stringSand a stringT, count the number of distinct subsequences ofTinS.A subsequence of a string is a new string which is formed from the orig...
分类:其他好文   时间:2014-05-10 19:10:58    阅读次数:389
INNO SETUP 5.5.0以上版本中文语言包
1 ; *** Inno Setup version 5.5.0+ Chinese messages *** 2 ; 3 ; To download user-contributed translations of this file, go to: 4 ; http://www.jrso...
分类:其他好文   时间:2014-05-10 18:55:59    阅读次数:614
The 3n + 1 problem
思路:先把1~10000数经过多少次变换的1存入count[MAX_N]数组中,比如count[1]=1就表示1经过一次变换,count[2]=2就表示2经过了2次变换,count[i]=k表示i经过了k次变换。因为输入时m,n谁大谁小不定,所以可以先得到m,n的最大,最小数,然后在求[min(m,...
分类:其他好文   时间:2014-05-10 18:41:12    阅读次数:307
C++map类型
map是键-值对的集合,可以理解为关联数组,可以使用键作为下标来获取一个值本文地址:http://www.cnblogs.com/archimedes/p/cpp-map.html,转载请注明源地址。map对象的定义使用前添加map头文件,必须分别指明键和值的类型:mapword_count;map...
分类:编程语言   时间:2014-05-10 07:03:58    阅读次数:397
用asp打开光驱!
用asp打开光驱!   Set oWMP = CreateObject("WMPlayer.OCX.7")  Set colCDROMs = oWMP.cdromCollection if colCDROMs.Count >= 1 then  For i = 0 to colCDROMs.Count - 1  colCDROMs.Item(i).Eject  Next ' cdr...
分类:Web程序   时间:2014-05-10 04:52:15    阅读次数:309
Pat(Advanced Level)Practice--1076(Forwards on Weibo)
Pat1076代码 题目描述: Weibo is known as the Chinese version of Twitter. One user on Weibo may have many followers, and may follow many other users as well. Hence a social network is formed with foll...
分类:其他好文   时间:2014-05-10 04:50:24    阅读次数:403
Hadoop与HBase中遇到的问题
1. Hadoop中遇到的问题 以前所遇到的问题由于没有记录,所以忘了  (1)NameNode没有启动成功, 是由于你对HDFS多次格式化,导致datanode中与namenode中的VERSION文件中的namespaceID不一致(对于NameNode节点,该文件位于hdfs-site配置文件中dfs.name.dir参数所指定的路径下的current文件夹中, 对于DataNode节点...
分类:其他好文   时间:2014-05-10 04:28:25    阅读次数:475
一个SQL update语句
需要每隔一段时间选取最老的商户更新时间戳:  update DP_Shop set DP_Shop.LastDate = now() where DP_Shop.ShopId in (select ShopId from DP_Shop order by LastDate limit 5);  ERROR 1235 (42000): This version of MySQL doesn't ...
分类:数据库   时间:2014-05-10 04:22:58    阅读次数:423
CentOS 5.9 编译newlisp
先下载最新的newlisp代码,解压后进入目录创建文件CMakeLists.txt, 内容如下:cmake_minimum_required (VERSION 2.6) include_directories(${CMAKE_SOURCE_DIR}) project(newlisp) set(NEWLISP_SRC newlisp newlisp.c nl-symbol.c nl-math...
分类:其他好文   时间:2014-05-10 03:38:36    阅读次数:374
算法-倒置字符串
/** * * @description * String utils * @author Czp * @version 1.0(2014-5-9) * */public class StringUtil { /** * @description: * ...
分类:其他好文   时间:2014-05-10 03:21:53    阅读次数:272
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!