上一页 1 ··· 65 66 67 68 69 70 71 72 73 ··· 142 下一页
摘要: 题目链接:Permutation Sequence The set [1,2,3,…,n] contains a total of n! unique permutations. By listing and labeling all of the permutations in order, We 阅读全文
posted @ 2017-06-20 21:39 wzjhoutai 阅读(101) 评论(0) 推荐(0) 编辑
摘要: Java虚拟机类载入过程是把Class类文件载入到内存。并对Class文件里的数据进行校验、转换解析和初始化,终于形成能够被虚拟机直接使用的java类型的过程。 在载入阶段,java虚拟机须要完毕下面3件事: a.通过一个类的全限定名来获取定义此类的二进制字节流。 b.将定义类的二进制字节流所代表的 阅读全文
posted @ 2017-06-20 21:03 wzjhoutai 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 怎么正确的计算一个ip地址的subnet id? 来源于: How to calculate the correct subnet for an interface (文档 ID 1059759.1) 适用于: Oracle Database - Enterprise Edition - Versi 阅读全文
posted @ 2017-06-20 20:23 wzjhoutai 阅读(1731) 评论(0) 推荐(0) 编辑
摘要: 链接:点击打开链接 题意:输入n,np,nc,m,分别代表节点个数,发电站个数,消耗站个数,电线个数,依次按要求输入问消耗站最多能获得的电量是多少 代码:#include <iostream> #include <string.h> #include <stdio.h> #include <algo 阅读全文
posted @ 2017-06-20 19:24 wzjhoutai 阅读(142) 评论(0) 推荐(0) 编辑
摘要: Xor Sum Problem Description Zeus 和 Prometheus 做了一个游戏,Prometheus 给 Zeus 一个集合,集合中包括了N个正整数,随后 Prometheus 将向 Zeus 发起M次询问,每次询问中包括一个正整数 S ,之后 Zeus 须要在集合其中找出 阅读全文
posted @ 2017-06-20 18:40 wzjhoutai 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 最短路 Time Limit: 5000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 30618 Accepted Submission(s): 13194 Problem 阅读全文
posted @ 2017-06-20 17:52 wzjhoutai 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 1 查出被锁的表信息 SELECT /*+ rule*/ a.sid, b.owner, object_name, object_type FROM v$lock a, all_objects b WHERE TYPE = 'TM' and a.id1 = b.object_id; --1.查出锁定 阅读全文
posted @ 2017-06-20 16:50 wzjhoutai 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 第 10 章 数据结构 table 是 Lua中唯一的数据结构,其它语言所提供的其它数据结构比方:arrays、 records、lists、queues、sets 等,Lua 都是通过 table 来实现,而且在 lua 中 table 非常好的实 现了这些数据结构。 在传统的 C 语言或者 Pa 阅读全文
posted @ 2017-06-20 08:12 wzjhoutai 阅读(198) 评论(0) 推荐(0) 编辑
摘要: MySQL Study之--Percona Server版本号 1、简单介绍 Percona 为 MySQL 数据库server进行了改进,在功能和性能上较 MySQL 有着非常显著的提升。该版本号提升了在高负载情况下的 InnoDB 的性能、为 DBA 提供一些非常实用的性能诊断工具;另外有很多其 阅读全文
posted @ 2017-06-19 12:06 wzjhoutai 阅读(939) 评论(0) 推荐(0) 编辑
摘要: 博客地址:http://blog.csdn.net/jiangxinnju github:https://github.com/jiangxincode 首先说明一下const在C和C++中的主要使用方法。被const修饰的东西都受到强制保护,能够预防意外的变动。能提高程序的健壮性。它能够修饰变量、 阅读全文
posted @ 2017-06-19 11:01 wzjhoutai 阅读(147) 评论(0) 推荐(0) 编辑
上一页 1 ··· 65 66 67 68 69 70 71 72 73 ··· 142 下一页