首页 > 其他
Patching OIM 11.1.1.5.0 to 11.1.1.5.3
本指南也可以应用到OIM11.1.1.5.1或11.1.1.5.2。 获取修补程序您将需要以下补丁: 1. Patch Name: 13106312Product: Oracle SOA PlatformRelease: 11.1.1.5.0 2. Patch Name: 13704894Produ...
分类:其他   时间:2014-02-09 22:17:10    收藏:0  评论:0  赞:0  阅读:579
BZOJ 1000 A+B Problem
#include int main(){int a,b; scanf("%d%d",&a,&b); printf("%d",a+b); return 0;}
分类:其他   时间:2014-02-09 22:15:30    收藏:0  评论:0  赞:0  阅读:309
iOS.Assembly
1. iOS Assembly Tutorial: Understanding ARMhttp://www.raywenderlich.com/37181/ios-assembly-tutorial
分类:其他   时间:2014-02-09 22:13:50    收藏:0  评论:0  赞:0  阅读:369
uva10401 Injured Queen Problem(DP)
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=11&page=show_problem&problem=1342#include #include #include #define...
分类:其他   时间:2014-02-09 22:13:00    收藏:0  评论:0  赞:0  阅读:351
vim的tab缩进及用空格设置
编辑~/.vimrc文件,分别设置用空格而不是用tab,一个tab多少个空格,自动缩进多少宽度,显示行号。set expandtabset tabstop=4set shiftwidth=4set nuset cursorline下次用vim打开文件该设置就生效了。备忘一下以备下次复制粘帖(/etc...
分类:其他   时间:2014-02-09 22:11:20    收藏:0  评论:0  赞:0  阅读:467
uva10304 Optimal Binary Search Tree(DP)
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=11&page=show_problem&problem=1245#include #include #define ll long ...
分类:其他   时间:2014-02-09 22:09:40    收藏:0  评论:0  赞:0  阅读:350
uva10721 Bar Codes(DP)
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=11&page=show_problem&problem=1662#include #define ll long longusing...
分类:其他   时间:2014-02-09 22:10:30    收藏:0  评论:0  赞:0  阅读:383
xenserver PXE安装系统错误的解决
刚开始在xenserver里找pxe启动安装系统找了半天,最后在NEW VM里的template里选择other install media 里找到pxe启动,启动之后加载映像,安装到一半又停止了,每次都停在mounting /tmp as tmpfs... done这个位置就不动了。google了...
分类:其他   时间:2014-02-09 22:08:50    收藏:0  评论:0  赞:0  阅读:496
uva348 Optimal Array Multiplication Sequence(DP)
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=11&page=show_problem&problem=284水题#include #include #include #inclu...
分类:其他   时间:2014-02-09 22:07:10    收藏:0  评论:0  赞:0  阅读:395
uva10465 Homer Simpson(水题)
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=11&page=show_problem&problem=1406#include using namespace std;int m...
分类:其他   时间:2014-02-09 22:08:00    收藏:0  评论:0  赞:0  阅读:336
染色问题(漂浮思想的应用)
染色问题(color.pas/c/cpp)【题目描述】平面上有n个珠子排成一排, 每个珠子初始颜色为0,你要对他们进行m次染色,每次你选定l和r,然后把[l,r]之间的珠子染成编号c的颜色,每个珠子的最终颜色为它曾经染过的编号最大的颜色,请你写个程序统计每个珠子最终的颜色。【输入格式】第一行两个数n...
分类:其他   时间:2014-02-09 22:06:20    收藏:0  评论:0  赞:0  阅读:404
Codeforces Round #228 (Div. 2) C. Fox and Box Accumulation(贪心)
题目:http://codeforces.com/contest/389/problem/C题意:给n个箱子,给n个箱子所能承受的重量,每个箱子的重量为1;很简单的贪心,比赛的时候没想出来。、、、、、先从小到大排一下序,然后从最上层向下找,只要能承受住重量就行。而且因为已经排序了找的都是尽量小的。。...
分类:其他   时间:2014-02-09 22:05:30    收藏:0  评论:0  赞:0  阅读:394
uva10688 The Poor Giant(DP)
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=11&page=show_problem&problem=1629水题记忆化dp#include #include #include ...
分类:其他   时间:2014-02-09 22:04:40    收藏:0  评论:0  赞:0  阅读:384
uva10943 How do you add?(DP)
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=11&page=show_problem&problem=1884#include #include #define mod 1000...
分类:其他   时间:2014-02-09 22:03:50    收藏:0  评论:0  赞:0  阅读:378
使用ab进行页面的压力测试
ab是apache自带的一个很好用的压力测试工具,当安装完apache的时候,就可以在bin下面找到ab1 我们可以模拟100个并发用户,对一个页面发送1000个请求./ab -n1000 -c100 http://vm1.jianfeng.com/a.html其中-n代表请求数,-c代表并发数返回...
分类:其他   时间:2014-02-09 22:02:10    收藏:0  评论:0  赞:0  阅读:427
uva10604 Chemical Reaction(DP)
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=11&page=show_problem&problem=1545#include #include #include #includ...
分类:其他   时间:2014-02-09 22:03:00    收藏:0  评论:0  赞:0  阅读:446
循环队列的链式存储结构
1 #include "stdafx.h" 2 #include 3 #include 4 using namespace std; 5 6 //循环队列的顺序存储结构 7 8 typedef int Status; 9 const int ok = 1;10 const int error = 0...
分类:其他   时间:2014-02-09 22:00:30    收藏:0  评论:0  赞:0  阅读:485
HTTP1.0与HTTP1.1的区别
HTTP/1.1与HTTP/1.0的区别下面主要从几个不同的方面介绍HTTP/1.0与HTTP/1.1之间的差别,当然,更多的内容是放在解释这种差异背后的机制上。1 可扩展性可扩展性的一个重要原则:如果HTTP的某个实现接收到了自身未定义的头域,将自动忽略它。? 在消息中增加版本号,用于兼容性判断。...
分类:其他   时间:2014-02-09 21:57:59    收藏:0  评论:0  赞:0  阅读:340
tmpfs——Linux的一种虚拟内存文件系统
虚拟内核文件系统(VirtualKernel File Systems),是指那些是由内核产生但不存在于硬盘上(存在于内存中)的文件系统。例如1、procproc文件系统为操作系统本身和应用程序之间的通信提供了一个安全的接口。通过它里面的一些文件,可以获取系统状态信息并修改某些系统的配置信息。当我们...
分类:其他   时间:2014-02-09 21:55:29    收藏:0  评论:0  赞:0  阅读:490
C# List<> 删除
List l = new List() { "A1", "A2", "A3", "B1", "B2", "B3" };int cl = l.RemoveAll(x => { return x.Contains("A"); });
分类:其他   时间:2014-02-09 21:50:30    收藏:0  评论:0  赞:0  阅读:331
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!