码迷,mamicode.com
首页 >  
搜索关键字:PAT 动态地址转换    ( 13520个结果
Oracle 自动内存参数依赖性
图例:在该图中使用了以下参数名称缩写: MT = MEMORY_TARGET MMT = MEMORY_MAX_TARGET ST = SGA_TARGET PAT = PGA_AGGREGATE_TARGET SMS = SGA_MAX_SIZE MEMORY_TARGET 设置为非零值时: 如果设置了 SGA_TARGET 和 PGA_AGGREGATE...
分类:数据库   时间:2014-10-17 12:01:28    阅读次数:323
PAT 1023 Have Fun with Numbers
#include #include #include using namespace std;bool double_num(vector &num) { int carry = 0; int i = num.size() - 1; while (i>=0) { in...
分类:其他好文   时间:2014-10-16 16:06:22    阅读次数:176
PAT 1021 Deepest Root
#include #include #include using namespace std;class Node {public: vector adj; bool visited; Node() : visited(false) {}};void reset_nodes(vec...
分类:其他好文   时间:2014-10-16 13:06:32    阅读次数:171
PAT 1015. Reversible Primes
#include #include #include #include using namespace std;void init_primes(vector& primes) { int len = primes.size(); for (int i=0; i rs; while...
分类:其他好文   时间:2014-10-16 10:30:32    阅读次数:232
PAT 1013 Battle Over Cities
#include #include #include using namespace std;class City {public: vector adj; bool visited; City() : visited(false) {}};void dfs(int idx, v...
分类:其他好文   时间:2014-10-16 02:01:41    阅读次数:189
PAT 1010 Radix
过了一天感觉没干什么,想刷一发题弥补一下,正在考虑去做哪道,室友说去试试PAT 1010,果然当年自己直接跳过了这题,一看这通过率(0.07)有点夸张了。题目是已知一个数,求另外一个数的基数,使得这两个数数值上相等。很自然的考虑到使用二分搜索来确定这个基数,数字表示使用[0-9a-z],这tmd的让...
分类:其他好文   时间:2014-10-15 18:55:11    阅读次数:373
java-pfx文件转换成16进制内容
public static void main(String[] args) throws Exception { String path = "D://111.pfx"; InputStream in = new FileInputStream(new File(pat...
分类:编程语言   时间:2014-10-13 19:34:41    阅读次数:384
PAT 1055 The World's Richest
#include #include #include #include #include #include using namespace std;#define AGE_MAX 200class People {public: char name[9]; int worth; i...
分类:其他好文   时间:2014-10-13 04:44:59    阅读次数:210
ASA8.4版本静态映射和PAT简单配置实验
拓扑如附件。ASA1配置如下:ASA1(config)#shrun:Saved:ASAVersion8.4(2)!hostnameciscoasaenablepassword8Ry2YjIyt7RRXU24encryptedpasswd2KFQnbNIdI.2KYOUencryptednames!interfaceGigabitEthernet0nameifoutsidesecurity-level0ipaddress100.1.1.2255.255.255.0!interfaceGig..
分类:其他好文   时间:2014-10-13 03:03:39    阅读次数:835
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!