--本机(1)./oracle/Middleware/wlserver_10.3/common/bin/wlst.sh(2)connect('weblogic','weblogic1','t3://localhost:7001')(3)progress=deploy(appName='t2',pat...
分类:
Web程序 时间:
2015-04-11 08:55:32
阅读次数:
240
今天本来想试试opencv的,于是就在自己的机子上部署一下试试,结果一直遇到这个错误:LINK : fatal error LNK1104环境:win7 64位 vs2012 opencv 2.4.11配置:将E:\opencv\opencv\build\x64\vc12\bin添加到环境变量pat...
分类:
其他好文 时间:
2015-04-10 17:30:12
阅读次数:
553
这次的题让我对选择不同数据结构所产生的结果惊呆了,一开始用的是结构来存储集合,课件上有现成的,而且我也是实在不太会,150ms的时间限制过不去,不得已,看到这题刚好可以用数组,结果7ms最多,有意思!什么是时间复杂度,终于有了一次感性的认识。这题还有个check的要求,我用了一个链表来存储,感觉挺麻...
分类:
其他好文 时间:
2015-04-06 15:37:34
阅读次数:
123
这次的作业完全是依葫芦画瓢,参照云课堂《数据结构》(http://mooc.study.163.com/learn/ZJU-1000033001#/learn/content)中何钦铭老师课件中有关建堆及插入的内容,再加上自己写的一个矬函数(竟然传了4个参数),OK了!题设要求及代码实现如下 1 ....
分类:
其他好文 时间:
2015-04-05 21:48:49
阅读次数:
123
1、下载depot_tools:
首先安装 git-core: sudo apt-get install git-core
执行命令: git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
2、更新depot_tools:
直接在当前shell环境输入: export PAT...
分类:
系统相关 时间:
2015-04-05 16:05:38
阅读次数:
183
Given a text txt[0..n-1] and a pattern pat[0..m-1], write a function search(char pat[], char txt[]) that prints all occurrences of pat[] in txt[]. You...
分类:
其他好文 时间:
2015-04-05 14:36:24
阅读次数:
128
在上一篇,我们开发了自定义的service:使用MyEclipse开发webservice,今天我们用android程序调用自定义的webservice接口:
在浏览器输入http://192.168.0.5:8080/TestService/MyServicePort?wsdl
其中MyServicePort是webservice服务器端的sun-jaxws.xml文件中的url-pat...
分类:
移动开发 时间:
2015-04-04 09:20:12
阅读次数:
199
【思路】:模拟。不需要结构体,用数组记录就可以。注意,题目中说了学校“从1开始连续编号”。
【AC代码】:
#include
#include
using namespace std;
const int maxn = 100000+10;
int school[maxn];
int main()
{
//freopen("in.txt", "r", stdin);
int n =...
分类:
其他好文 时间:
2015-04-04 09:14:50
阅读次数:
128
设置LINUX自动匹配环境变量1.$su #su进入root#vi /etc/profile 在文件末尾加上下列语句: PATH=$PATH:/sbin #在PATH变量后追加/sbin目录 export PATH=$PAT...
分类:
数据库 时间:
2015-04-03 23:46:26
阅读次数:
202
我写了两种实现方法,其中第二种是参考Yomman园友的(http://www.cnblogs.com/yomman/p/4271949.html)。我的方法(方法一)是用一个数组存放输入的字符串,另一个数组存放字符串中每个字的首地址,然后······;方法二是利用OJ会自动在输入结尾添加文件结束符,...
分类:
其他好文 时间:
2015-04-03 10:54:18
阅读次数:
97