Raw Read Error Rate 底层读取错误率,高值暗示盘体/磁头有问题Throughput Performance 读写通量性能 (越高越好) * 一般在进行了人工 Offline S.M.A.R.T. 测试以后才会有值。Spin Up Time 电机起转时间,单位为秒或者毫秒Start/...
分类:
其他好文 时间:
2014-12-02 22:12:16
阅读次数:
201
Follow up for problem "Populating Next Right Pointers in Each Node".What if the given tree could be any binary tree? Would your previous solution stil...
分类:
其他好文 时间:
2014-12-02 17:01:01
阅读次数:
123
Given a linked list, determine if it has a cycle in it. Follow up:Can you solve it without using extra space?开始以为这道题只需要注意不使用额外空间即可,于是写了个时间复杂度为O(n^2)暴力...
分类:
其他好文 时间:
2014-12-02 14:56:30
阅读次数:
177
Given a linked list, return the node where the cycle begins. If there is no cycle, return null. Follow up:Can you solve it without using extra space?这...
分类:
其他好文 时间:
2014-12-02 14:55:22
阅读次数:
195
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.
For example:
Given the below binary tree and sum...
分类:
其他好文 时间:
2014-12-01 22:37:27
阅读次数:
146
GooglePlay上的一道逆向题,一共有5关难度,选择相应的难度,输入Name和Serial后,点击submit后,可提示是否通关成功。如图。程序总体结构分析利用ApkIDE对com.me.keygen.activity进行逆向后,发现MainActivity.smali的validateSerial()方法用于判断是否通关,该方法又调用KeyV..
分类:
移动开发 时间:
2014-12-01 19:30:25
阅读次数:
408
使用DataSet对象访问数据库 当对DataSet对象进行操作时,DataSet对象会产生副本,所以对DataSet里的数据进行编辑操作不会直接对数据库产生影响,而是将DataRow的状态设置为added、deleted或changed,最终的更新数据源动作将通过DataAdapter对象的up....
分类:
数据库 时间:
2014-12-01 14:09:15
阅读次数:
221
ZOJ 1711 Sum It Up(DFS啊 )...
分类:
其他好文 时间:
2014-11-30 23:21:11
阅读次数:
219
一、HTML的介绍Hyper Text Mark-up Language 超文本标记语言,是一种描述性标记语言(不是编程语言),主要用于描述网页(可以有图像,文字,声音,等..)但没有交互性HTML运行原理: 1.本地运行:html文件用浏览器打开 2.远程访问运行:本地浏览器访问远程服务器(如.....
分类:
Web程序 时间:
2014-11-30 21:28:07
阅读次数:
268
Follow up for N-Queens problem.Now, instead outputting board configurations, return the total number of distinct solutions.#include#include#includeusi...
分类:
其他好文 时间:
2014-11-30 21:22:31
阅读次数:
163