- 博客(7)
- 收藏
- 关注
转载 使用Ruby On Rails15分钟打造一个博客系统
控制台创建一个博客项目rails new blogcd blograils g scaffold post title:string text:textrails g model comment post_id:integer text:textrake db:migraterails s测试:ht
2015-10-25 13:17:12 584 1
转载 动态规划问题
题目索引1.三角形找一条从顶到底的最小路径分析设状态为 f (i; j ),表示从从位置 (i; j ) 出发,路径的最小和,则状态转移方程为f(i,j)=min{f(i+1,j),f(i+1,j+1)}+(i,j) 2.最大子数组和设状态为 f[j],表示以 S[j] 结尾的最大连续子序列和,状态转移方程如下:f=max(f+A[i],A[i]);//对于
2015-10-23 00:35:54 248
原创 算法代码
题目:Say you have an array for which the i-th element is the price of a given stock on day i.Design an algorithm and implement it to nd the maximum pro t. You may complete at most two transactions.N
2015-10-23 00:24:25 398
原创 如何把rubyon rails 项目部署到heroku上去:
如何把rubyon rails 项目部署到heroku上去:首先把下面代码加到项目的Gemfile中去:gem 'sqlite3',:group => [:development, :test]group:production dogem 'pg','0.17.1'gem 'rails_12factor', '0.0.2'gem 'thin'en
2015-10-22 20:36:35 295
原创 如何让新建的ruby on rails 项目打开直接时网页,显示Hello,Word,
如何让新建的项目打开直接时网页,显示Hello,Word,首先新建项目:railsnew Hello_word进入项目:cdHello_Word创建一个最小的controller和view:railsgenerate controller welcome index找到app/views/welcome/index.html.erb:将里面内容改为:Hello,Word
2015-10-22 20:35:11 474
转载 python画图2
[原]【python】matplotlib.pyplot入门时间 2014-12-24 16:39:09 JasonDing的专栏原文 http://blog.csdn.net/jasonding1354/article/details/42125555主题 Pythonmatplotlib.pyplot介绍matplotlib的pyplot子库
2015-10-20 21:43:32 319
转载 python画图
Python图表绘制:matplotlib绘图库入门matplotlib 是python最著名的绘图库,它提供了一整套和matlab相似的命令API,十分适合交互式地行制图。而且也可以方便地将它作为绘图控件,嵌入GUI应用程序中。它的文档相当完备,并且Gallery页面中有上百幅缩略图,打开之后都有源程序。因此如果你需要绘制某种类型的图,只需要在这个页面中浏览/复制/粘贴一
2015-10-20 21:40:25 797
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人