--将lib中bbedus.msb和bbedus.msg 放在$ORACLE_HOME/rdbms/mesg下
--将lib中sbbdpt.o和ssbbded.o 放在$ORACLE_HOME/rdbms/lib下
--在$ORACLE_HOME/rdbms/lib下执行:[oracle@jibo lib]$ make -f ins_rdbms.mk $ORACLE_HOME/rdbms/li...
分类:
数据库 时间:
2014-10-15 16:44:11
阅读次数:
334
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing
together the nodes of the first two lists.
class Solution {
public:
ListNode *mergeTwoLists(Li...
分类:
其他好文 时间:
2014-10-15 15:48:31
阅读次数:
127
$(".li_logout_a").click(function (e) { var hrefs = location.href; e.preventDefault(); $("#lnk_username span").text(""); $(...
分类:
其他好文 时间:
2014-10-15 15:30:30
阅读次数:
199
Minimal coverage
The Problem
Given several segments of line (int the X axis) with coordinates [Li,Ri]. You are to choose the minimal amount of them, such they would completely cover the segment [0,...
分类:
其他好文 时间:
2014-10-14 23:52:09
阅读次数:
247
$(".test li").click(function() {
$(".test li a").removeClass("test01");
$(".test li a").addClass("test02");
$("a", this).removeClass("test02");//当前li中的a标签
$("a", this).addClass("test01");
var tit...
分类:
Web程序 时间:
2014-10-14 19:41:59
阅读次数:
134
DOM操作分为3个方面: DOM Core(核心)、HTML-DOM 和 CSS-DOM1、查找节点: 查找元素节点: var $li = $("ul li:eq(1)"); var li_txt = $li.text(); 查找属性节点: var $p = $("p"); ...
分类:
Web程序 时间:
2014-10-14 18:57:39
阅读次数:
270
1.让ul li水平排列的CSS代码:li {display:inline} 或者采用float:left方式。2.让div水平并排: 或者 但是有一点注意,当把ul li和div放置在同一个div1中,li采用了float会影响到后面的div,所以采用dispaly比...
分类:
其他好文 时间:
2014-10-14 17:31:09
阅读次数:
162
Given a string, write a routine that converts the string to a long, without using the built in functions that would do this. Describe what (if any) li...
分类:
其他好文 时间:
2014-10-14 13:01:28
阅读次数:
201
先下载jdk和adt-bundle-windows-x86-20140702jdk要配置三个环境变量 新建系统变量: JAVA_HOME : E:\Android\jdk(这是jdk装的位置) CLASSPATH : .;%JAVA_HOME%\lib\dt.jar;%JAVA_HOME%\li.....
分类:
移动开发 时间:
2014-10-13 23:54:27
阅读次数:
279
一. 列表标签: ????①定义列表标签:<dl>...</dl>(define list) ????②有序列表标签:<ol>...</ol>(order list) ????③无序列表标签:<ul>...</ul>(unorder list) 二.表格标签: ????①<table>...
分类:
其他好文 时间:
2014-10-13 13:52:30
阅读次数:
170