首页 > 2015年10月17日 > 全部分享
Modern Operating System --- Power Management (Hard Disk)
Another major villain is the hard disk. It takes substantial energy to keep it spinning at highspeed, even if there are no accesses. Many conputers, e...
分类:其他   时间:2015-10-17 07:00:24    收藏:0  评论:0  赞:0  阅读:224
LintCode Kth Largest Element
原题链接在这里:http://www.lintcode.com/en/problem/kth-largest-element/#采用的quickSelect方法,取出pivot, 比pivot 小的都放在左边,比pivot大的都放在右边,若是pivot左边包括pivot的个数恰巧等于k, 就返回pi...
分类:其他   时间:2015-10-17 07:00:04    收藏:0  评论:0  赞:0  阅读:429
android 23 启动带2个Categories值的预定义acticity和桌面activity
mainActivity.javapackage com.sxt.day04_07_twoaction;import android.os.Bundle;import android.app.Activity;import android.content.Intent;import android....
分类:移动平台   时间:2015-10-17 06:59:54    收藏:0  评论:0  赞:0  阅读:282
J2EE自定义标签:实现“标签作用域”
好吧我们总是喜欢自定义一些名词,这里“标签作用域”是指变量的作用域只在与标签内部,在标签外就获取不到值标签要求实现的效果大致如下:jsp页面:...栏目名称:${cate.name}栏目文章列表:${item.name}...编译后打印出来的html页面:...栏目名称:新闻栏目栏目文章列表:新闻一...
分类:其他   时间:2015-10-17 06:59:44    收藏:0  评论:0  赞:0  阅读:278
Modern Operating System --- Power Management (OS Issues)
The operating system plays a key role in energy management. It controls all the devices, so itmust decide what to shutdown and when to shut it down. I...
分类:其他   时间:2015-10-17 06:59:34    收藏:0  评论:0  赞:0  阅读:337
Leetcode 3Sum
Given an arraySofnintegers, are there elementsa,b,cinSsuch thata+b+c= 0? Find all unique triplets in the array which gives the sum of zero.Note:Elemen...
分类:其他   时间:2015-10-17 06:59:24    收藏:0  评论:0  赞:0  阅读:245
IBM Personal Communications 软件:精简绿色版TN3270终端模拟器:经测试可以在 (winxp、win2003、win764)上运行
全系列版本啊!耗费了我大量的时间和精力,深夜熬到3点!注意:如何使用?解压后,里面有个reg注册表文件,以管理员权限用户双击加载即可。http://files.cnblogs.com/files/jinzhenshui/pcom_6.0.14_green.ziphttp://files.cnblog...
分类:Windows开发   时间:2015-10-17 06:58:54    收藏:0  评论:0  赞:0  阅读:856
asp.net:录入数据库的中文变问号
表格是可以接受中文的;类型也是nvarchar的;还是出现写中文变问号??这时候请加入转义大写N;如:原查询语句:insert into table1(name) value('蜘蛛侠')修改后的语句:insert into table1(name) value(N'蜘蛛侠')
分类:数据库技术   时间:2015-10-17 06:58:34    收藏:0  评论:0  赞:0  阅读:279
二分查找的两种写法
其实还是经常写二分的,也知道二分查找有好多写法,然而一直没有总结一下。现单独开一篇备忘。我通常的二分写法是:int binarysearch(int *a, int n, int d) { int left = 0, right = n - 1; while (left d) { ...
分类:其他   时间:2015-10-17 06:58:24    收藏:0  评论:0  赞:0  阅读:203
Linux下php安装Redis扩展
Linux下php安装Redis扩展注意:目录的权限 chomd 777 -R 1、安装redis下载:https://github.com/nicolasff/phpredis/archive/2.2.4.tar.gz上传phpredis-2.2.4.tar.gz到/usr/local/src.....
分类:Web开发   时间:2015-10-17 06:58:14    收藏:0  评论:0  赞:0  阅读:270
Leetcode Two Sum II - Input array is sorted
Given an array of integers that is alreadysorted in ascending order, find two numbers such that they add up to a specific target number.The function t...
分类:其他   时间:2015-10-17 06:57:54    收藏:0  评论:0  赞:0  阅读:223
Leetcode Two Sum
Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the two nu...
分类:其他   时间:2015-10-17 06:57:24    收藏:0  评论:0  赞:0  阅读:177
SAP ECC6安装
http://www.cnblogs.com/Michael_z/category/322108.htmlhttp://www.cnblogs.com/westmoon/archive/2012/09/06/2673868.htmlhttp://www.cnblogs.com/Michael_z/c...
分类:其他   时间:2015-10-17 06:57:14    收藏:0  评论:0  赞:0  阅读:290
错误处理的一些想法
错误处理在编程中是很重要的,可以在调试,发布的时候少了很多麻烦,以往在做软件的时候总是少了错误处理,导致用户用来莫名其妙,在查找问题的时候也是没有头绪最近在总结一些错误处理技巧,总共有这么一些方法:1.LOGlog在关键的时刻可以救命的东西,因此我一直提议组里的人多使用log,但是log记多了也不好...
分类:其他   时间:2015-10-17 06:56:44    收藏:0  评论:0  赞:0  阅读:118
android 22 启动带2个action值的预定义acticity
main.xml mainactivity.javapackage com.sxt.day04_07_twoaction;import android.os.Bundle;import android.app.Activity;import android.conte...
分类:移动平台   时间:2015-10-17 06:56:34    收藏:0  评论:0  赞:0  阅读:260
Modern Operating System --- Power Management (Hardware Issues)
The general approach most computer vendors take to battery conservation is to design the CPU,memory, and I/O devices to have multiple states: on, slee...
分类:其他   时间:2015-10-17 06:56:24    收藏:0  评论:0  赞:0  阅读:237
读ActiveAndroid源码(二)
上一次粗略地读了一下TableInfo这个类,了解了一下ActiveAndroid中注解的使用方法,算是一个预热,这一篇,从正常的顺序开始。 所以,这次从ActiveAndroid的初始化开始阅读。public class Application extends android.app.App...
分类:移动平台   时间:2015-10-17 06:55:54    收藏:0  评论:0  赞:0  阅读:277
powershell 调用winform dll
//1.加载dll,调用winform窗体,使用指定构造函数param{$filePath=""}[void][reflection.assembly]::LoadFile($filePath)$a=New-Object namespace.classctor(args)$a.DoSth()
分类:Windows开发   时间:2015-10-17 06:55:44    收藏:0  评论:0  赞:0  阅读:281
struts2视频学习笔记 11-12
课时11动态方法调用 如果Action中存在多个方法时,可以使用!+方法名调用指定方法。(不推荐使用)1 public String execute(){2 setMsg("execute");3 return "success";4 }5 6 ...
分类:其他   时间:2015-10-17 06:55:34    收藏:0  评论:0  赞:0  阅读:273
我体验过的可以用的XCode插件
XCode版本:7.0.1其实插件的使用,如果能得到直接的xclugin后缀文件,是可以直接放置在隐藏文件夹中:/Users/HeYang/Library/Application Support/Developer/Shared/Xcode/Plug-ins1、highlight-Plugin.xc...
分类:其他   时间:2015-10-17 06:55:14    收藏:0  评论:0  赞:0  阅读:302
1306条   上一页 1 ... 57 58 59 60 61 ... 66 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!