已经装好的64位Oracle数据库window7_64位的操作系统PLSQL_Developer 9.0以上版本(目前只有32位的);下面有下载连接!官方的 instantclient-basic-win32-10.2.0.5 文件;下面有下载连接!百度经验:jingyan.baidu.com 方法...
分类:
数据库 时间:
2015-03-27 23:46:20
阅读次数:
184
【思路】:将各个边平行到x、y轴上,重叠部分相乘得面积。getLen中是两条线相交的各种判断。注意:因为输入一个矩形的两个点并没有说先输入左下再输入右上(测试数据也确实有先输入了右上),所以一定要两两排序。否则会出现a大于b的情况。
【AC代码】:
#include
#include
#include
#include
#include
using namespace std...
分类:
其他好文 时间:
2015-03-21 14:08:35
阅读次数:
843
In order to work effectively with multithreaded code, it’s important to have the basic facts about monitors and locks at your command. This checklist contains the main facts that you should know: ...
分类:
编程语言 时间:
2015-03-21 11:24:52
阅读次数:
189
package com.emp;import java.util.HashMap;import java.util.Iterator;import javax.swing.plaf.basic.BasicScrollPaneUI.HSBChangeListener;public class Mang...
分类:
其他好文 时间:
2015-03-20 20:24:43
阅读次数:
110
一、发展起源:统计语言模型起源于 Ponte 和 Croft 在 1998年的 SIGIR上发表的论文应用:语言模型的应用很多:corsslingual retrievaldistributed IRexpert findingpassage retrievalweb searchgenomics ...
分类:
编程语言 时间:
2015-03-20 12:46:42
阅读次数:
141
Basic Concepts of Block Media RecoveryWhenever block corruption has been automatically detected, you can perform block media recovery manually with th...
分类:
其他好文 时间:
2015-03-20 12:18:39
阅读次数:
158
【思路】:递归的使用。
【AC代码】:
#include
#include
#include
#include
#include
using namespace std;
void fj(int n)
{
if (1 == n)
{
cout << char('A'-1+n);
}
else
{
fj(n-1);
cout << char('A'-1+n);
...
分类:
其他好文 时间:
2015-03-20 00:00:17
阅读次数:
338
【思路】:注意0次幂是单位矩阵。
【AC代码】:
#include
#include
#include
#include
#include
using namespace std;
#define MAX 30+2
void cal(int m[MAX][MAX], int t[MAX][MAX], int r[MAX][MAX], int N)
{
int i = 0, j ...
分类:
编程语言 时间:
2015-03-20 00:00:06
阅读次数:
382
【思路】:先打表,后循环。
【AC代码】:
#include
#include
#include
#include
#include
using namespace std;
#define MAX 10000
int prime_list[MAX], cnt = 0;
int isPrime(int n)
{
int i = 0;
for (i = 2; i <= sqr...
分类:
其他好文 时间:
2015-03-19 23:58:45
阅读次数:
481
【思路】:模拟。注意一个是在兔子休息的时间乌龟可能到达了。刚开始没考虑WA80%。
【AC代码】:
#include
#include
#include
#include
#include
using namespace std;
int main()
{
//freopen("in.txt", "r", stdin);
//freopen("out.txt", "w", st...
分类:
其他好文 时间:
2015-03-19 16:30:13
阅读次数:
223