首页 > 其他
关于usbstor
usbstor生成2个设备,一个是作为磁盘设备栈的pdo,接收到由disk.sys生成的fdo设备下发的srb(irpStack->Parameters.Scsi.Srb)。一个是作为usb设备栈的fdo,将其转化为USB请求(urb)。 这里解释下: usbstor生成的f...
分类:其他   时间:2015-09-09 07:25:40    收藏:0  评论:0  赞:0  阅读:452
【云分析】《“支持和运维服务”仍然困扰着企业云的应用》
2015-09-06张晓东东方云洞察点击上面的链接文字,可以快速关注“东方云洞察”公众号云服务目前很火,那么让我们畅想一下:做为企业IT部门负责人,你采购并在企业内部部署了一个云存储服务,某一天存储服务突然出现了故障。那么你服务的用户应该打电话向谁求助?内部IT支持人员..
分类:其他   时间:2015-09-09 07:25:10    收藏:0  评论:0  赞:0  阅读:200
1.2-Nginx编译安装
安装nginxcd/usr/local/src/wgethttp://nginx.org/download/nginx-1.6.2.tar.gztarzxvfnginx-1.6.2.tar.gzcdnginx-1.6.2./configure--prefix=/usr/local/nginx--with-pcremakemakeinstall启动nginx:/usr/local/nginx/sbin/nginx注意:nginx没有启动脚本,需要自己手动编写
分类:其他   时间:2015-09-09 07:24:39    收藏:0  评论:0  赞:0  阅读:214
8月30日 第六次课作业 作业四
1、创建分区,并格式化成常用的文件系统step1创建新分区首先查看当前分区系统上只有两个分区,离MBR限制的4个主分区还差2个,所以我可以再分一个新的主分区但是为了更好的练习分区,我这里多分三个分区①4G的主分区②一个扩展分区③10个逻辑分区进入fdisk分区界面:完成第一个4..
分类:其他   时间:2015-09-09 07:24:30    收藏:0  评论:0  赞:0  阅读:233
Implement Stack using Queues
Implement the following operations of a stack using queues.push(x) -- Push element x onto stack.pop() -- Removes the element on top of the stack.top()...
分类:其他   时间:2015-09-09 07:22:09    收藏:0  评论:0  赞:0  阅读:256
Spark入门实战系列--8.Spark MLlib(上)--机器学习及SparkMLlib简介
【注】该系列文章以及使用到安装包/测试数据 可以在《倾情大奉送--Spark入门实战系列》获取1、机器学习概念1.1机器学习的定义在维基百科上对机器学习提出以下几种定义:l“机器学习是一门人工智能的科学,该领域的主要研究对象是人工智能,特别是如何在经验学习中改善具体算法的性能”。l“机器学习是对能通...
分类:其他   时间:2015-09-09 07:21:59    收藏:0  评论:0  赞:0  阅读:482
[LeetCode#49]Group Anagrams
Problem:Given an array of strings, group anagrams together.For example, given:["eat", "tea", "tan", "ate", "nat", "bat"],Return:[ ["ate", "eat","tea"....
分类:其他   时间:2015-09-09 07:21:39    收藏:0  评论:0  赞:0  阅读:229
数学建模竞赛题目
建模意义 思考方法 数学建模是一种数学的思考方法,是运用数学的语言和方法,通过抽象、简化建立能近似刻画并"解决"实际问题的一种强有力的数学手段。 数学建模就是用数学语言描述实际现象的过程。这里的实际现象...
分类:其他   时间:2015-09-09 06:19:49    收藏:0  评论:0  赞:0  阅读:203
Palindrome Number
Determine whether an integer is a palindrome. Do this without extra space.click to show spoilers.Some hints:Could negative integers be palindromes? (i...
分类:其他   时间:2015-09-09 06:18:09    收藏:0  评论:0  赞:0  阅读:207
如何为编程爱好者设计一款好玩的智能硬件(四)——初尝试·把温湿度给收集了(上)!
一、我的构想:如何为编程爱好者设计一款好玩的智能硬件(一)——即插即用、积木化、功能重组的智能硬件模块构想二、别人家的孩子:如何为编程爱好者设计一款好玩的智能硬件(二)——别人是如何设计硬件积木的!三、MCU选型:如何为编程爱好者设计一款好玩的智能硬件(三)——该选什么样的MCU呢?四、温湿度传感器...
分类:其他   时间:2015-09-09 06:17:29    收藏:0  评论:0  赞:0  阅读:194
Spiral Matrix I, II
I. Given a matrix ofmxnelements (mrows,ncolumns), return all elements of the matrix in spiral order.For example,Given the following matrix:[ [ 1, 2, 3...
分类:其他   时间:2015-09-09 06:16:49    收藏:0  评论:0  赞:0  阅读:123
《The CG Tutorial》阅读笔记——动画 Animation
这段时间阅读了英文版的NVidia官方的《The CG Tutorial》,通过它来学习基本的图形学知识和着色器编程。在此做一个阅读记录。动画 Animation一、基于时间的运动 Movement in Time实现动画渲染,需要应用程序对时间进行监测,并将它作为一个全局变量传递给着色器。尽量在G...
分类:其他   时间:2015-09-09 06:15:59    收藏:0  评论:0  赞:0  阅读:247
String类题目总结
用到的Class和methods:1. 类StringString s;s.charAt(i);2. 类Character:http://docs.oracle.com/javase/7/docs/api/java/lang/Character.htmlisLetterOrDigit(charch)...
分类:其他   时间:2015-09-09 06:15:39    收藏:0  评论:0  赞:0  阅读:136
Valid Anagram
Given two stringssandt, write a function to determine iftis an anagram ofs.For example,s= "anagram",t= "nagaram", return true.s= "rat",t= "car", retur...
分类:其他   时间:2015-09-09 06:14:59    收藏:0  评论:0  赞:0  阅读:202
LUBM (Lehigh university benchmark) tutorial
This little tutorial teaches you step by step how to use LUBM to benchmark your semantic system.1. Here is the official site of LUBM:http://swat.cse.l...
分类:其他   时间:2015-09-09 06:14:19    收藏:0  评论:0  赞:0  阅读:407
用Qt开发第一个Hello World程序
配置好Qt的环境变量之后,我们才可以进行下面的通过终端来使用Qt开发这个第一个程序因为Qt的文件路径不能有中文否则会报错,所以一般都把工程文件都建立在根目录我们创建的Qt程序包含两个部分:1、GUI程序 2、显示字符串,所以输入代码:编译这个程序如果提示找不到qmake就说明环境变量配置有问题,正常...
分类:其他   时间:2015-09-09 06:13:19    收藏:0  评论:0  赞:0  阅读:273
函数式编程之block
语法:注意:1,在代码块中可以使用和改变全局变量2,而局部变量可以使用,但是不能改变。怎么在代码块中改变局部变量呢?在局部变量前面加上关键字:__block参考:http://blog.csdn.net/totogo2010/article/details/7839061http://www.coc...
分类:其他   时间:2015-09-09 06:12:39    收藏:0  评论:0  赞:0  阅读:234
Rectangle Area
Find the total area covered by tworectilinearrectangles in a2Dplane.Each rectangle is defined by its bottom left corner and top right corner as shown ...
分类:其他   时间:2015-09-09 06:11:59    收藏:0  评论:0  赞:0  阅读:223
[LeetCode#57]Insert Interval
Problem:Given a set ofnon-overlappingintervals, insert a new interval into the intervals (merge if necessary).You may assume that the intervals were i...
分类:其他   时间:2015-09-09 06:11:49    收藏:0  评论:0  赞:0  阅读:244
关于【按位与】、【按位或】和【按位异或】
【按位与(&)】eg.10&1410=101014=1110∴10&14=1010=10eg.-6^5-6的补码:1111 10105=0000 0101-6&5=1eg.-6&-4-6的补码:1111 1010-4的补码:1111 1100-4&-6=1111 1000=-8☆负数的按位与用其补码...
分类:其他   时间:2015-09-09 06:11:39    收藏:0  评论:0  赞:0  阅读:254
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!