1、对于原先的代码做出如下整理: connection 保留 dataMining 函数保留,代码修改,实现TF-IDF算法 denoising 函数保留,代码修改 googletranslator 函数保留,代码修改 inputnewdate 保留功能,重新定义,实现函数 mainwindow 保 ...
分类:
其他好文 时间:
2016-11-07 02:45:44
阅读次数:
246
【参考】http://blog.csdn.net/hichinamobile/article/details/51725090 ...
分类:
数据库 时间:
2016-11-07 01:15:38
阅读次数:
524
今天准备把最新的表导入自己以前的机子上做临时开发,在数据库导入的时候遇到一个问题:Incorrect table definition; there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UP ...
分类:
数据库 时间:
2016-11-07 01:02:02
阅读次数:
347
题目描述 Description 水果姐今天心情不错,来到了水果街。 水果街有n家水果店,呈直线结构,编号为1~n,每家店能买水果也能卖水果,并且同一家店卖与买的价格一样。 学过oi的水果姐迅速发现了一个赚钱的方法:在某家水果店买一个水果,再到另外一家店卖出去,赚差价。 就在水果姐窃喜的时候,cgh ...
分类:
其他好文 时间:
2016-11-06 17:36:48
阅读次数:
264
Say you have an array for which the ith element is the price of a given stock on day i. Design an algorithm to find the maximum profit. You may comple ...
分类:
编程语言 时间:
2016-11-05 15:01:33
阅读次数:
317
linux移植问题汇总(一) 在此记录移植linux过程中出现的问题以及解决方法。 项目GitHub地址 linux3.0.80:https://github.com/numbqq/linux-3.0.80_for_tiny210linux3.3.5:https://github.com/numbq ...
分类:
系统相关 时间:
2016-11-04 23:49:51
阅读次数:
286
#!/usr/bin/python
#coding=utf-8
__author__=‘moxiaokai‘
#通过参数传递,判断数字、字符串、list、tuple、词典等数据类型是否为可变数据对象
a=2
b=‘啊哈‘
c=[1,2,3]
d=(1,2,3)
e={‘tom‘:11,‘sam‘:57,‘lily‘:100}
defnum(x):#数字
x=100
printx
num(a)
printa
defstr(x):#字..
分类:
其他好文 时间:
2016-11-04 17:29:06
阅读次数:
143
#!/usr/bin/python
#coding=utf-8
#词典
‘‘‘
nl=[1,3,8]
nl.append(15)
printnl
bl=[2,3,5]
printnl+bl
dic={‘tom‘:11,‘sam‘:57,‘lily‘:100}
printdic[‘sam‘]
dic[‘tom‘]=59
printdic
dic={}
printdic
dic[‘liwei‘]=89
printdic
dic={‘lilei‘:90,‘lily‘:100,‘sam‘:57,‘tom‘:89}..
分类:
编程语言 时间:
2016-11-04 17:27:12
阅读次数:
152
%% 【Input】:s_train(输入样本数据,行数为样本数,列为维数);s_group(训练样本类别);s_sample(待判别数据)%% 【Output】:Cla(预测类别) function Cla = fun_panbie(s_train,s_group,s_sample,index ) ...
分类:
其他好文 时间:
2016-11-04 01:55:12
阅读次数:
307
在linux图形界面中,按 “Alt+Ctrl+F1”,进入命令行界面。 切换到root用户 # vi /etc/inittab 找到下面的语句: # Default runlevel. The runlevels used by RHS are: # 1 – Single user mode –单 ...
分类:
其他好文 时间:
2016-11-03 22:52:41
阅读次数:
630