#include using namespace std;struct node{ int l,w;}dp[1005];int g[1005][1005];int d[1005];int k,max_v;int f(int i){ if (d[i]>0) return d[i]; d[i]=1; f...
分类:
其他好文 时间:
2014-08-15 12:33:58
阅读次数:
197
Follow up for problem "Populating Next Right Pointers in Each Node".What if the given tree could be any binary tree? Would your previous solution stil...
分类:
其他好文 时间:
2014-08-15 12:07:08
阅读次数:
145
最近分享zabbix与ansible好多,大家看烦了,我也没啥存货了,现在就介绍一下如何进行rpm打包吧。rpm打包有2个,一个是自己写spec,另外要给是使用ruby的fpm,我个人比较倾向于第二种fpm,这个不需要写spec文件,特简单,不过为了让大家看明白,我分别介绍一下这2款软件是如何进..
分类:
其他好文 时间:
2014-08-15 10:50:19
阅读次数:
468
第一题(神经网络):题目大意,给出一些点,每个点都有2个值,c和u,给出一些有向边,权值为w。入度为0的点的c已知,其它点的c未知,每个入度不为0的点node的c等于sum(c[k]*w[k][node]),k为与它相连(有向边指向node)的点。求所有出度为0且c>0的点。解题过程: 此题的方法应...
分类:
其他好文 时间:
2014-08-15 08:15:37
阅读次数:
676
express是在node.js的基础上,拓展出的一个简洁实用的框架结构,运用这个东西,我们可以更方便的处理很多的事情。只要上手了,那就是个贝多芬! 一般安装express有几种方法。 第一,使用npm安装,cmd中输入npm i...
分类:
Web程序 时间:
2014-08-15 03:00:27
阅读次数:
244
/*
只需判断等效边和必选边的个数和n-1的关系即可
*/
#include
#include
#define N 110
struct node {
int u,v,w;
}f[N*N*2];
int cmp(const void *a,const void*b) {
return (*(struct node *)a).w-(*(struct node *)b).w;
}
int pre[...
分类:
其他好文 时间:
2014-08-15 00:09:06
阅读次数:
263
有一批共n个集装箱要装上艘载重量为c的轮船,其中集装箱i的重量为wi。找出一种最优装载方案,将轮船尽可能装满,即在装载体积不受限制的情况下,将尽可能重的集装箱装上轮船。#include #define MAX 12882using namespace std;struct node{ int ...
分类:
其他好文 时间:
2014-08-14 23:50:06
阅读次数:
254
https://github.com/hakimel/reveal.js#installation1.install Node.jsbrew install nodejs2. install Grunthttp://gruntjs.com/getting-started#installing-the...
分类:
Web程序 时间:
2014-08-14 23:28:56
阅读次数:
262
1、折半查找 1 // 递归算法 2 int BinarySearch(int item, Node *elem, int left, int right) 3 { 4 int mid = -1; 5 if(left item)10 mid = Binary...
分类:
其他好文 时间:
2014-08-14 23:06:56
阅读次数:
241
在执行mdrill创建表的时候报如下异常(蓝色部分为关键):[mdrill@hadoop1101 bin]$ ./bluewhale mdrill create ./create.sql higo execute [create, ./create.sql]Exception in thread "...
分类:
其他好文 时间:
2014-08-14 23:05:46
阅读次数:
246