码迷,mamicode.com
首页 >  
搜索关键字:rod    ( 2498个结果
Spring.net
1.什么是Spring Framework? Spring Framework(简称Spring)是根据Rod Johnson著名的《Expert One-on-One J2EE Design and Development》而开发的J2EE应用程序框架。目前主要根据Rod Johnson和Jue....
分类:编程语言   时间:2015-01-21 23:55:25    阅读次数:326
算法导论第十五章之钢条切割问题(自顶向下法)
#include #include using namespace std; #define inf -9999 int memorized_cut_rod_aux(int p[],int n,int r[]) { int q=0; if(r[n]>=0) { return r[n]; } else { //int q=inf; for(int i=1;i<=n;++i)...
分类:编程语言   时间:2014-12-15 20:22:04    阅读次数:272
算法导论第十五章之钢条切割问题(自底向上版本)
#include using namespace std; int bottom_up_cut_rod(int p[],int n,int &pos) { int *r=new int[n+1]; int *s=new int[n+1]; for(int i=0;i<=n;++i) s[i]=0; for(int i=0;i<=n;++i) r[i]=0; for(int j=1...
分类:编程语言   时间:2014-12-15 20:21:15    阅读次数:340
poj1905 Expanding Rods 二分
Expanding Rods Time Limit: 1000MS   Memory Limit: 30000K Total Submissions: 11782   Accepted: 3063 Description When a thin rod of length L is heated n degrees, it expands...
分类:其他好文   时间:2014-11-22 13:23:30    阅读次数:180
C++实现算法导论十五章动态规划之钢条分割问题
#include #include #include #include using namespace std; //采用普通的递归算法来求解钢条分割的最大的收益 int cut_rod(int *p,const int &n) { if(n==0) return 0; int q=-1; for(int i=1;i<=n;++i) { q=max(q,p[i]+cut_rod(p...
分类:编程语言   时间:2014-11-10 15:34:51    阅读次数:361
菜鸟学习Spring——初识Spring
一、概念。         Spring是一个开源框架,Spring是于2003 年兴起的一个轻量级的Java 开发框架,由Rod Johnson 在其著作Expert One-On-One J2EE Development and Design中阐述的部分理念和原型衍生而来。它是为了解决企业应用开发的复杂性而创建的。Spring使用基本的JavaBean来完成以前只可能由EJB完成的事情。...
分类:编程语言   时间:2014-09-27 12:54:48    阅读次数:284
rdo 安装 openstack
openstack的安装方法好多种啦!总体分手动、自动部署; rdo是RedHat提供的openstack的部署方法,很简单,而且openstack的最新版本RedHat貌似是最早出现,目前是i版本! 我这次记录h版的安装,因为我用的是h版本的; 安装前提: 1.操作系统安装完毕-centosorrhel 2.网络..
分类:其他好文   时间:2014-07-26 03:08:37    阅读次数:221
[DP] Rod-cutting problem
给一个长度为 n 的杆子,切成小段卖出去,价格根据小段的长度不同而不同。下面是一个例子我们要通过切成小段卖出尽可能高的总价钱。问题是:How to decompose the problem?Decomposition 的第一步是:第一刀切在哪?可以切在最左边(等于整根卖出去);可以切在位置1,位置...
分类:其他好文   时间:2014-06-10 16:43:26    阅读次数:345
2498条   上一页 1 ... 248 249 250
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!