带品质描述词的单点信息 Single-point Information with Quality descriptor
SIQ : = CP8{SPI, RES, BL, SB, NT, IV}
SPI : = BS1[1] : = 分/开 : = 合/关
RES保留 : = BS3[2..4]
BL : = BS1[5] : = 未被闭锁 : = 被闭锁
SB : = ...
分类:
其他好文 时间:
2015-02-06 16:44:37
阅读次数:
358
机器学习Machine Learning - Andrew NG
courses学习笔记
linear regression works with multiple variables or with multiple features多变量线性规划
Multiple Features多变量
Gradient Descent for Multiple...
分类:
系统相关 时间:
2015-02-05 18:31:27
阅读次数:
237
英文博客地址:http://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-iv-database中文翻译地址:http://www.pythondoc.com/flask-mega-tutorial/database.html开源...
分类:
数据库 时间:
2015-02-01 09:30:54
阅读次数:
334
这个题目是把罗马数字转换为整数,比如输入字符串 MCMLXXXIV,输出为整数1984。观测罗马数字的规律,我们得到,其实可以直接相加每个字符代表的整数即可,比如CLIII这个罗马数字对应的整数即为100+50+1+1+1=153。但是,若是两个字符代表一个数字时,我们就需要注意了,比如IV即为5-1=4。因此,我们得到规律,没读入字符串的一个字符,都将它与之后一个字符代表的数字比较,如果前者较小...
分类:
其他好文 时间:
2015-01-28 09:57:36
阅读次数:
194
public class C6Demo01_DownImageActivity extends Activity {
/** Called when the activity is first created. */
private Button btn;
private ImageView iv;
private URL url;
private InputStream inp...
分类:
移动开发 时间:
2015-01-26 22:57:23
阅读次数:
226
原文:DES加密和解密PHP,Java,ObjectC统一的方法PHP的加解密函数 pkcs5Pad ( $string, $size ); $data = mcrypt_encrypt(MCRYPT_DES, $this->key, $string, MCRYPT_MODE_CBC, $iv); ...
分类:
编程语言 时间:
2015-01-26 11:30:25
阅读次数:
247
#include
#include
#include
#include
using namespace std;
int dp[110][210],dis,t,n;
int d[110],p[110];
char str[100];
void input()
{
gets(str);
n=0;
d[0]=0;
sscanf(str,"%d",&dis);...
分类:
其他好文 时间:
2015-01-21 20:09:28
阅读次数:
153
Given a roman numeral, convert it to an integer.
Input is guaranteed to be within the range from 1 to 3999.
题目的意思是将给定的罗马数字转换为一个整数
什么是罗马数字:
I, II, III, IV, V, VI, VII, VIII, IX, X....
分类:
其他好文 时间:
2015-01-15 20:19:12
阅读次数:
205
Given a roman numeral, convert it to an integer.
Input is guaranteed to be within the range from 1 to 3999.
将罗马数字转为阿拉伯数字 对应转换表如下:
个位数举例
I, 1 】II, 2】 III, 3】 IV, 4 】V, 5 】VI, 6】 VII, 7】 VIII,8 】IX,...
分类:
编程语言 时间:
2015-01-15 16:08:07
阅读次数:
188
public class PhotoTest extends Activity {
private ImageView iv;
private Bitmap bitmap;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super....
分类:
移动开发 时间:
2015-01-13 21:41:02
阅读次数:
135