oracle10g用数据泵导出数据提示,提示错误如下:ORA-31693:Tabledataobject"SMARTGPS2006"."MCC_ASYN_POS":"MCC_ASYN_POS201409"failedtoload/unloadandisbeingskippedduetoerror:ORA-29913:errorinexecutingODCIEXTTABLEPOPULATEcalloutORA-01555:snapshottooold:rollbacksegm..
分类:
其他好文 时间:
2014-09-30 14:01:10
阅读次数:
202
#includeusing namespace std;void Merge(int a[],int b[],int first,int mid,int last)//合并两个有序数组{ int p=first,q=mid+1; int pos=first; while(p<=mid&&q<=las...
分类:
其他好文 时间:
2014-09-29 23:36:11
阅读次数:
487
原文来自于:https://code.csdn.net/openkb工具软件POS系统相关 (3)开源SIP项目 (9)OA办公 (22)文档管理 (21)计算机辅助设计 (15)地理信息系统GIS (15)金融及财务系统 (7)教学科研相关 (27)邮件客户端 (13)即时通信及语音工具 (62)...
分类:
其他好文 时间:
2014-09-29 00:04:55
阅读次数:
379
//假设sum为总的耗油量,max为起始点a到终点b的耗油量,如果,当到达b的时候,
//max < 0,那么,出发点肯定不能从a开始,这个时候将max = 0,然后,pos = i+1,选择pos为起始点,然后继续遍历。
//如果,最后的sum = 0,则返回pos.
class Solution {
public:
int canCompleteCircuit(std::vector ...
分类:
其他好文 时间:
2014-09-27 15:36:29
阅读次数:
198
在WebDev站点上经常看到的一个问题是关于文件上传的。在这篇文章里我将解释如何用PHP实现文件
上传。 设计上传表格
我们主要的目标是完成文件从本地计算机上传到服务器上去。为了做到这一点,我们需要做一个表
格,允许用户选择一个文件并可以提交它。下面是一个例子:
文件上传表格
ACTION=submit.php3
METHOD="POS...
分类:
Web程序 时间:
2014-09-27 10:24:39
阅读次数:
166
// php 中 一个控制字符串输出的函数(中英文),每行显示多少字数,避免英文的影响
// $str 字符串
// $len 每行显示的字数(汉字×2)
function rep($str,$len)
{
$strlen=strlen($str);
$i=0;
$finstr="";
$pos=0;
...
分类:
Web程序 时间:
2014-09-27 10:07:49
阅读次数:
226
题目在此
思路:很经典的搜索。时间比较紧,用map会T。hash函数用了 康托展开。
#include
#include
#define INF 99999999
using namespace std;
struct S{
int pos,mp[9],step;
bool operatorp.s...
分类:
其他好文 时间:
2014-09-26 23:08:48
阅读次数:
312
box() --创建box--创建一个50*50的box阵列for a in 0 to 50 do ( for i in 0 to 50 do copy $Box001 pos:[25*a,i*25,0] ) --给box的w...
分类:
其他好文 时间:
2014-09-25 18:28:57
阅读次数:
152
/**
+----------------------------------------------------------
* CURL
+----------------------------------------------------------
* @param string$url 请求的URL
* @param string|array$post POS...
分类:
Web程序 时间:
2014-09-24 18:00:08
阅读次数:
180
题意 建树并层次遍历输出 (data,pos) pos表示改节点位置 L代表左儿子 R代表右儿子
建树很简单 开始在根节点 遇到L往左走遇到R往右走 节点不存在就新建 走完了就保存改节点的值 输出直接bfs就行了了
#include
#include
#include
using namespace std;
const int maxn = 300;
char...
分类:
其他好文 时间:
2014-09-23 12:28:54
阅读次数:
234