发现一个USB class网站,对设备管理的小伙伴非常有用
http://www.usb.org/developers/defined_class
USB Class Codes
August 11, 2014
USB defines class code information that is used to ident...
分类:
其他好文 时间:
2014-12-27 17:43:29
阅读次数:
212
1. 用户和组
登录linux时,需要输入用户账号。linux只认用户ID,
用户ID User ID,简称 UID
用户属于的用户组, Group ID, 简称 GID.
2. 用户账号
用户账号在linux下与两个文件有关: /etc/passwd 和 /etc/shadow.
/etc/passwd 保存用户账号信息。
/etc/shadow 是专门管...
分类:
系统相关 时间:
2014-12-27 17:42:30
阅读次数:
207
安装与设置
1. 解压struts2.1.6,假设解压后位于d:\struts2目录
2. 安装MyEclipse,任何版本都可以
3. 假设你已经安装好jdk和tomcat了,如d:\tomcat
HelloWorld
1. 建立项目
a) 打开eclipse
b) 新建项目
c) ...
分类:
其他好文 时间:
2014-12-27 17:42:21
阅读次数:
138
在贴代码之前,列举一下我的认识和收获:
a.在.cs中设置前台标签的背景或者其他涉及到颜色的属性的时候,纯色的话必须要用到SolidColorBrush画刷类
例如:Border border = new Border(); border.Background = new SolidColorBrush(Colors.Green)
b.在一个容器控件中添加内容Child,可以有两种方法(这边Border是父容器,TextBlock是内容)
其一先是实例内容对象,然后对这个对象添加各种各样...
scikit-learn中PCA的使用方法
@author:wepon
@blog:http://blog.csdn.net/u012162613/article/details/42192293
在前一篇文章 主成分分析(PCA) 中,我基于python和numpy实现了PCA算法,主要是为了加深对算法的理解,算法的实现很粗糙,实际应用中我们一般调用成熟的包,本文就结束...
分类:
其他好文 时间:
2014-12-27 17:40:42
阅读次数:
497
Immediate Decodability
An encoding of a set of symbols is said to be immediately decodable if no code for one symbol is the prefix of a code for another symbol. We will assume for this...
分类:
其他好文 时间:
2014-12-27 17:42:22
阅读次数:
186
项目结构:
FileDownload.java:
package com.wl.download;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import...
分类:
编程语言 时间:
2014-12-27 17:41:00
阅读次数:
212
情况:
你用C++写了后台生成DLL,用unity3D调用DLL,游戏PC版OK,但是想变成手游,需要将DLL变成so
步骤:
1.安装jdk,配置安卓环境、eclipse(这个不说了,网上泛滥)
2.打开eclipse新建个Android项目,Flie--new--第二个,建的时候写个名字,剩下的一路next
3.在新建的项目下面新建一个文件夹jni,在这个文件夹里在创建一个文...
分类:
其他好文 时间:
2014-12-27 17:41:00
阅读次数:
361
Description
Bessie wants to navigate her spaceship through a dangerous asteroid field inthe shape of an N x N grid (1
Fortunately, Bessie has a powerful weapon that can vaporize all the asteroids...
分类:
其他好文 时间:
2014-12-27 17:41:11
阅读次数:
218
昨天北师大新生赛的题,本弱做一做。。。
贪心题,按照结束时间排序进行贪心。
http://www.bnuoj.com/v3/problem_show.php?pid=44582
MLX的疯狂睡眠
Time Limit: 1000ms
Memory Limit: 65536KB
64-bit integer IO format: %lld
J...
分类:
其他好文 时间:
2014-12-27 17:40:07
阅读次数:
309
Description
Children are used to playing with special cubes with letters written on thecubes' faces. The goal of the game is to compose words using such cubes. If youwant to compose the word "DOG",...
分类:
其他好文 时间:
2014-12-27 17:40:35
阅读次数:
297
UML类图和对象图
类图以反映类的结构(属性、操作)以及类之间的关系为主要目的,描述了软件系统的结构,是一种静态建模方法。
类图是面向对象系统建模中最常用的图,它是定义其他图的基础,在类图的基础上,可以使用状态图、协作图、组件图和
配置图等进一步描述系统其他方面的特性。
类图包含7个元素:类、接口、协作、依赖关系、泛化关系、关联关系以及实...
分类:
其他好文 时间:
2014-12-27 17:40:57
阅读次数:
244
Cows
Time Limit: 3000MS
Memory Limit: 65536K
Total Submissions: 13304
Accepted: 4407
Description
Farmer John's cows have discovered that the clover growing along th...
分类:
编程语言 时间:
2014-12-27 17:39:07
阅读次数:
271
题目大意:给定一个由'a'和'b'构成的字符串,求不连续回文子序列的个数
首先回文一定是将字符串倍增 由于求的是不连续回文子序列的个数 因此我们可以求出总回文子序列的个数,然后减掉连续的
连续的就是回文子串 用Manacher算法可以O(n)求解
不连续的就有些难搞了
首先我们令f[i]表示以i为中心的对称字符对个数
比如s[]=$#a#b#a 那么s[4]='b' f[4]=2
那么...
分类:
编程语言 时间:
2014-12-27 17:40:35
阅读次数:
243