在安装禅道插件后,访问时出现下列错误信息解决:进入http://www.ioncube.com/loaders.php网站下载ioncube_loaders_lin_x86-64.tar软件包将该软件包解压[root@localhost~]#cd/var/www/html/zentaopms/www/[root@localhostwww]#lsdatafavicon.icoindex.phpioncube.phpjsok.txtro..
分类:
其他好文 时间:
2015-07-22 16:32:26
阅读次数:
261
How to install and run the analytics backend locally:We have had some troubles getting people up and running locally with the analytics backend, so I ...
分类:
其他好文 时间:
2015-07-22 12:21:17
阅读次数:
120
【019-Remove Nth Node From End of List(移除单链表的倒数第N个节点)】【LeetCode-面试算法经典-Java实现】【所有题目目录索引】原题 Given a linked list, remove the nth node from the end of list and return its head.
For example, Given lin...
分类:
编程语言 时间:
2015-07-22 09:30:15
阅读次数:
132
题意:n*n的格子里面有k个小行星,每一能消除一行或一列,那么最小消除多少次可以把全部消除掉
思路:把行和列连到一起,可以构成一个二分图,那么只需要求最大匹配数即为所求
#include
#include
#include
using namespace std;
const int N=1001;
int n1,n2,k;
int mp[N][N],vis[N],lin...
分类:
其他好文 时间:
2015-07-19 15:01:22
阅读次数:
116