--查看最耗磁盘读写率的磁盘语句 select *from (select v.sql_id,v.child_number,v.sql_text,v.elapsed_time,v.cpu_time,v.disk_reads,rank() over(order by v.disk_reads desc...
分类:
数据库 时间:
2015-09-02 00:30:11
阅读次数:
315
接下来介绍Nim游戏(同样引用杭电上的,懒的打字)1.有两个玩家;2.有三堆扑克牌(比如:可以分别是5,7,9张);3.游戏双方轮流操作;4.玩家的每次操作是选择其中某一堆牌,然后从中取走任意张;5.最后一次取牌的一方为获胜方;想一会:还记得刚才说的P点和N点吗?P:必败点,N:必胜点先给出结论,这...
分类:
其他好文 时间:
2015-09-02 00:30:13
阅读次数:
164
SSKeychainhttps://github.com/soffes/sskeychainSSKeychain is a simple wrapper for accessing accounts, getting passwords, setting passwords, and deletin...
分类:
其他好文 时间:
2015-09-02 00:29:43
阅读次数:
245
实体类:class User { String name; String age; public User(String name,String age){ this.name=name; this.age=age; } public String getAge() { return age...
分类:
编程语言 时间:
2015-09-02 00:30:14
阅读次数:
212
package cn.stat.p1.file;import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.FileOutputStream;import...
分类:
编程语言 时间:
2015-09-02 00:28:47
阅读次数:
169
WalkOverATree题意:给你一棵树,有个人在节点0,现在问你,这个人走L步,最多能访问多少个不同的节点,一个节点可以被走多次,但只算一次。题解:这个问题的关键在于,每个点最多走两次,这是因为我要么一次性走到这个点,要么从这个点回去走其他的点,不可能出现走三次的情况,这里需要细想清楚。那么我们...
分类:
其他好文 时间:
2015-09-02 00:30:55
阅读次数:
150
今天渣渣想直接创建一个UITableView视图作为根视图来用结果发现有警告,才明白TableView和view是不能直接作为根视图的,需要放在ViewController上.做个笔记详细了解下.参考博文:http://blog.csdn.net/ryantang03/article/details...
分类:
其他好文 时间:
2015-09-02 00:30:07
阅读次数:
160
输入一棵二叉树,求该树的深度。从根结点到叶结点依次经过的结点(含根、叶结点)形成树的一条路径,最长路径的长度为树的深度。思路:递归的想法,每次递归,左右子树深度+1,取其中最大值。 1 /* 2 struct TreeNode { 3 int val; 4 struct TreeNo...
分类:
其他好文 时间:
2015-09-02 00:29:43
阅读次数:
128
安装说明系统环境:CentOS-6.3安装方式:yum install (源码安装容易产生版本兼容的问题)安装软件:系统自动下载SVN软件检查已安装版本#检查是否安装了低版本的SVN1rpm -qa subversion#卸载旧版本SVN1yum remove subversion一.安装SVN1y...
分类:
系统相关 时间:
2015-09-02 00:29:38
阅读次数:
264
Combination Lock时间限制:10000ms单点时限:1000ms内存限制:256MB描述Finally, you come to the interview room. You know that a Microsoft interviewer is in the room thoug...
分类:
其他好文 时间:
2015-09-02 00:29:46
阅读次数:
249
Linux Opendir and readdir will not update along with directory changingTable of Contents1. Result2. temporary fix method3. Test1 ResultAccording to my...
分类:
系统相关 时间:
2015-09-02 00:27:40
阅读次数:
213
iOS设备的内存有限,如果用UITableView显示成千上万条数据,就需要成千上万个UITableViewCell对象的话,那将会耗尽iOS设备的内存。要解决该问题,需要重用UITableViewCell对象重用原理:当滚动列表时,部分UITableViewCell会移出窗口,UITableVie...
分类:
其他好文 时间:
2015-09-02 00:28:37
阅读次数:
132
http://blog.csdn.net/woshi250hua/article/details/7961869(哈密顿)http://blog.csdn.net/pi9nc/article/details/9219971(哈密顿)http://blog.csdn.net/sprintfwater/...
分类:
其他好文 时间:
2015-09-02 00:28:20
阅读次数:
136
Memento 备忘录模式(行为型模式)对象状态的回溯对象状态的变化无端,如何回溯、恢复对象在某个点的状态?动机(Motivation)在软件构建过程中,某些对象的状态在转换过程中,可能由于某种需要,要求程序能够回溯到对象之前处于某个点时的状态。如果使用一些共有接口来让其他对象得到对象的状态,便会暴...
分类:
其他好文 时间:
2015-09-02 00:29:12
阅读次数:
233
一、调用静态库文件:两种方式:1 使用VS工具 1)、工具》选项》项目和解决方案》VC++目录中设置包含文件和库文件的目录 2)cpp中包含头文件,以及要用的命名空间,然后即可调用相关的东西2、不通过设置目录的方式: 1)cpp中包含头文件 2)cpp中加入#pragma comment(lib,....
分类:
编程语言 时间:
2015-09-02 00:27:02
阅读次数:
256
Given a strings, partitionssuch that every substring of the partition is a palindrome.Return all possible palindrome partitioning ofs.For example, giv...
分类:
其他好文 时间:
2015-09-02 00:28:43
阅读次数:
214
a='this is a'b=a.replace('a','b') 字符串替换c='this is %s %s' %('my','apple')d='this is {} {} ' .format('my','apple')e='this is {1} {0} ' .format('apple','...
分类:
编程语言 时间:
2015-09-02 00:25:55
阅读次数:
204