1.Web 动画开发工具-Adobe Edge Animate网页动画格式一直是 Flash
的天下,但 Flash 动画是封闭格式而且有明显的问题,最主要是占用大量 CPU,浪费电脑资源。随着HTML5标准的出现与普及,Flash
的优点不再,而缺点却日益凸显,就连 Adobe 公司也宣布停止开发...
分类:
Web程序 时间:
2014-06-20 08:50:02
阅读次数:
495
Zend是众多开源成功故事之一的主角,它遵循了已在MySQL和Subversion中被证明成功的模式,针对那些需要高可靠性、高可扩展性Web应用服务器的企业客户,提供技术支持和商用软件。此前,该公司已经宣布推出了Zend
Server软件,这是一个在一台到三台服务器上运行PHP应用的高度集成平台。它...
分类:
Web程序 时间:
2014-06-13 13:50:36
阅读次数:
273
The materials will be driven to the edge of
dial by centrifugal force and fall down into the ring, crushed and grinded by
roller, and become powder af...
分类:
其他好文 时间:
2014-06-11 12:22:35
阅读次数:
330
一、安装1
软件准备:Setup-Subversion-1.7.8TortoiseSVN-1.7.11.23600-win32-svn-1.7.82
安装:安装个人的需要设定好安装路径。3 创建一个库的根目录,并创建一个版本库库的根路径:D:\svn\repository建立一个版本库在D:\svn...
题目来源:Light OJ 1026 Critical Links
题意:输出桥
思路:模版
#include
#include
#include
#include
#include
using namespace std;
const int maxn = 10010;
struct Edge
{
int u, v;
Edge(){}
Edge(int u, int v):...
分类:
其他好文 时间:
2014-06-08 04:07:05
阅读次数:
235
题目来源:Light OJ 1291 Real Life Traffic
题意:最少添加几条边 可以使全图边双连通
思路:缩点 重新构图 答案就是(叶子节点数+1)/ 2
#include
#include
#include
#include
#include
using namespace std;
const int maxn = 10010;
struct Edge
{
i...
分类:
其他好文 时间:
2014-06-08 02:57:26
阅读次数:
276
Subversion是优秀的版本控制工具,其具体的的优点和详细介绍,这里就不再多说.首先来下载和搭建SVN服务器.现在Subversion已经迁移到apache网站上了,下载地址:http://subversion.apache.org/packages.html这是二进制文件包的下载地址,你可在左...
分类:
其他好文 时间:
2014-06-07 10:40:16
阅读次数:
200
大致有两种方式: 1,在bashrc中添加如下脚本1 svndiff()2 {3 svn diff
"${@}" | colordiff4 } 2,修改svn的配置文件1 $ vim ~/.subversion/config2 [helpers]3
diff-cmd = colordif...
分类:
其他好文 时间:
2014-06-07 08:33:20
阅读次数:
235
最近看了很多介绍图算法的文章,发现网上可以搜到的资料比较少,所以打算在这写一个介绍图算法的系列文章,一方面是帮助自己整理,另一方面也给大家分享下这方面的知识。1.1图的定义: 图(graph)由顶点(vertex)和边(edge)的集合组成,每一条边就是一个点对(v,w)。图的种类:地图,电路图,调...
分类:
其他好文 时间:
2014-06-07 06:13:29
阅读次数:
305
题意:一个图中有两种路径 1 无方向权值为政 2 有方向权值为负
问是否存在一个回路其权值为负思路:bellman算法#includeusing namespace std;struct Edge{ int u,v; int
w;}e[15000];int all;int dist[15...
分类:
其他好文 时间:
2014-06-05 17:26:32
阅读次数:
186