1.安装
Linux下直接apt-get install git 或者 apt-get install git-core 即可
2.创建版本库
进入目录 git init 此时会生成一个.git的目录,用来管理你的这个目录下的版本,一般不要动.git目录。
3.添加文件,并提交
git add filename 可以看作将文...
分类:
系统相关 时间:
2014-05-23 08:14:08
阅读次数:
374
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a link...
分类:
其他好文 时间:
2014-05-23 07:43:23
阅读次数:
246
项目名称:/sessionVerificationCode
项目目录:
项目源码:
index.jsp
Insert title here
验证码:
success.js...
分类:
其他好文 时间:
2014-05-22 11:17:05
阅读次数:
256
libsvm的函数调用方法 详解
本文地址: http://blog.csdn.net/caroline_wendy/article/details/26261173
需要加载(load)SVM的模型, 然后将结点转换为SVM的格式, 即索引(index)+数据(value)的形式;
释放SVM的model有专用的函数: svm_free_and_destroy_model, 否则容易内存泄露;
可以预测数据的概率, 则需...
分类:
其他好文 时间:
2014-05-22 10:52:57
阅读次数:
335
1、 创建表完整语法
CREATE TABLE [schema.]table
(column datatype [, column datatype] … )
[TABLESPACE tablespace]
[PCTFREE integer]
[PCTUSED integer]
[INITRANS integer]
[MAXTRANS integer]
[STORAGE sto...
分类:
数据库 时间:
2014-05-22 06:25:53
阅读次数:
384
项目名称:/cookieDemo2Record
需求:
模拟用户在网上商城,浏览商品,同时显示商品的浏览记录
1.查询所有商品页面-index.jsp/index.html
a.查询所有商品的按钮-----FindAllBooksServlet.java-com.ghsy.servlet
2.显示商城的商品
a.用bean存储商品-com.ghsy.domain
b.db包中的...
分类:
其他好文 时间:
2014-05-20 16:29:38
阅读次数:
311
操作系统:winxpVC环境:VC6.0必需文件:Berkeley
DB安装文件(db-.msi)下载地址http://www.oracle.com/technology/software/products/berkeley-db/index.html步骤:1、运行db-4.7.25.msi,安装B...
分类:
数据库 时间:
2014-05-20 13:27:15
阅读次数:
508
戳我去解题Given two binary strings, return their sum
(also a binary string).For example,a ="11"b
="1"Return"100".分析:高精度加法,只是将10进制的高精度加法 换成了 2进制的高精度加法首先将 两个...
分类:
其他好文 时间:
2014-05-20 11:21:52
阅读次数:
224
实验1 实验目的:使用opencv操作摄像头拍摄一张图片 函数: 1 CvCapture*
cvCreateCameraCapture( int index ); 2 IplImage* cvQueryFrame( CvCapture* capture
); 实验代码: 1 #in...
分类:
其他好文 时间:
2014-05-20 11:12:01
阅读次数:
248
add by zhj:
其实作者是想说用Python来做那些Bash实现起来比较麻烦的部分,即将Bash与Python结合使用。英文原文:http://www.linuxjournal.com/content/python-scripts-replacement-bash-utility-scrip...
分类:
编程语言 时间:
2014-05-20 08:53:25
阅读次数:
735