一:编写目的本文档的编写旨在探寻规范的软件开发流程、加快软件开发速度、提高软件开发质量、降低项目综合成本。IT界有一句格言:"You can do it right; you can do it fast; you can do it cheap. Pick two." 而我们要做的就是:提供优质服...
分类:
其他好文 时间:
2014-07-03 11:06:20
阅读次数:
188
具体解决方案参考的http://www.tomshardware.com/forum/171045-46-remote-desktop-connection-blank-desktopto solve it I opened two windows thru remote desktopthen i...
When thinking about tire safety, it is important to consider two things: age and use. Vehicles driven daily are typically driven 15,000 miles a year. ...
分类:
其他好文 时间:
2014-07-01 19:54:16
阅读次数:
236
Find the contiguous subarray within an array (containing at least one number) which has the largest sum.For example, given the array [?2,1,?3,4,?1,2,1...
分类:
其他好文 时间:
2014-07-01 00:23:01
阅读次数:
248
这里笔者只写出关键代码:int add(int n,intm){ if(m==0) returnn; ① int sum=n^m; ② int carry=(n&m)<<1; ③ return add(sum,carry); ④} 在分析每步代码之前先看两个例子...
分类:
其他好文 时间:
2014-06-30 23:50:59
阅读次数:
428
Problem A: GuessTime Limit:1 SecMemory Limit:32 MBDescriptionIn the television program "Shopping Street" of CCTV-2, two people, A and B are guessing t...
分类:
其他好文 时间:
2014-06-30 23:24:47
阅读次数:
220
Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the two nu...
分类:
其他好文 时间:
2014-06-30 21:36:50
阅读次数:
292
题意:给你n个点m条边,问删除前i条边后有多少个连通分块。
思路:从后往前操作,从后往前添加i条边等于添加完m条边后删掉前m-i条边,可知刚开始没有边,所以sum[m]=n;
#include
#include
#include
#include
#include
#include
#define M 100010
#define LL...
分类:
其他好文 时间:
2014-06-30 20:26:50
阅读次数:
198
DirectIO: The SRIO DirectIO
transfer class is similar to a memcopy transfer between two SRIO devices. One of the devices is the master that initiates the transfer. The second deviceis
the slave th...
分类:
其他好文 时间:
2014-06-30 19:46:54
阅读次数:
215
Creating a Physical Standby Database
This case is created, operated and followed the steps from oracle online help documentation.
The configuration of the two sites server:
Primary Database:
[roo...
分类:
数据库 时间:
2014-06-30 19:37:39
阅读次数:
313