Databasemounted.ORA-03113:end-of-fileoncommunicationchannelProcessID:4907SessionID:1Serialnumber:5这种错误的解决方案出现这个报错之后,明明oracle已经mount,此时查看oracle的状态:selectopen_modefromv$database;ERROR:ORA-03114:notconnectedtoORACLE提示oracle就根..
分类:
数据库 时间:
2014-08-26 03:03:26
阅读次数:
284
LeetCode: Binary Tree Maximum Path SumGiven a binary tree, find the maximum path sum.The path may start and end at any node in the tree. For example:G...
分类:
其他好文 时间:
2014-08-25 22:34:54
阅读次数:
184
Oracle存储过程可以有无参数存储过程和带参数存储过程。一、无参程序过程语法 create or replace procedure NoParPro as ; begin ; exception //存储过程异常 ; end; 二、带参存储过程实例 createorrep...
分类:
数据库 时间:
2014-08-25 16:42:44
阅读次数:
303
我的方案中,使用两个 hash_set 分别存储当前层和下一层结点,另一个 hash_set存储之前遍历过的结点。
思想: 在 I 的基础之上, 加入 hash_map 记下每条边, 从 end 开始搜索,建立以 start 为源点,end 为汇点的图,然后从 start 开始深搜即可。
分类:
其他好文 时间:
2014-08-25 02:15:43
阅读次数:
264
一、在C中,当我们无法列出传递函数的所有实参的类型和数目时,可以用省略号指定参数表。void fun(...);void fun(parm_list,...);#include void fun(int n,...){ int *temp=&n; temp++; for(int i...
分类:
其他好文 时间:
2014-08-24 22:07:53
阅读次数:
213
Given a linked list, remove the nth node from the end of list and return its head.For example, Given linked list: 1->2->3->4->5, and n = 2. After ...
分类:
其他好文 时间:
2014-08-24 19:13:32
阅读次数:
194
比方说下面一段代码 make_process(List) when is_list(List)-> Pid1=spawn(fun()->do_action(List) end), register(pid1,Pid1), Pid2=spawn(fun()->do_action() end), register(pid2,Pid2). do_action(List)-> re...
分类:
其他好文 时间:
2014-08-24 18:09:53
阅读次数:
302
$\bf命题:$设$\int_a^{ + \infty } {f\left( x \right)dx} $收敛,若$\lim \limits_{x \to \begin{array}{*{20}{c}} {{\rm{ + }}\infty } \end{array}} f\left( x \righ...
分类:
其他好文 时间:
2014-08-24 16:42:32
阅读次数:
208
1.用@interface来声明一个类,冒号表示继承关系,冒号后面是父类。NSobject是所有类的父类,@end关键字表示结束。 类的声明放在“类名+.h”文件夹中。 类的声明主要由两部分组成:实例变量和方法。 声明实例变量的格式:变量类型 变量名称 例如:int hello 实例变量可以使用oc...
分类:
其他好文 时间:
2014-08-24 15:26:02
阅读次数:
136
一、字符串data: "begin=" + $("#dateStart").val() + "&end=" + $("#dateEnd").val() + "&rank=" + $("#selectTime").val() + "&PsNet=" + $("#selectPsNet").val() ...
分类:
其他好文 时间:
2014-08-24 11:34:02
阅读次数:
162