1、错误描述
六月 03, 2014 11:00:35 下午 freemarker.log.JDK14LoggerFactory$JDK14Logger error
严重: Template processing error: "Expression nums is undefined on line 10, column 25 in list.ftl."
Expression nums is...
分类:
其他好文 时间:
2014-06-20 12:59:50
阅读次数:
229
java实现用邻接矩阵(相邻矩阵)实现图,缺点是矩阵中大量的0元素会耗费大量的存储空间
public class Graph {
final int MAX_VERTEX = 10;// 最多10个顶点
Vertex[] vertex;// 顶点数组
int[][] adjacency;// 邻接矩阵
int numOfVertex;// 当前图...
分类:
其他好文 时间:
2014-06-20 12:12:49
阅读次数:
207
1、错误描述
六月 04, 2014 10:31:47 下午 freemarker.log.JDK14LoggerFactory$JDK14Logger error
严重: Template processing error: "Expected number, sequence, or string. maps evaluated instead to freemarker.core.Hash...
分类:
其他好文 时间:
2014-06-20 11:26:40
阅读次数:
303
问题:错误提示如下:Received exception processing
F:/apjp/apjp_remote_appengine/war\web-inf/appengine-web.xmlcom.google.apphosting.utils.config.appengineconfige...
分类:
移动开发 时间:
2014-06-20 08:56:07
阅读次数:
335
1.这种方式的问题是,只列出当前import进上下文的模块.进入python命令行.输入以下代码:>>>import
sys>>>sys.modules2.在python命令行下输入:>>>help()help>modules
分类:
编程语言 时间:
2014-06-11 23:18:22
阅读次数:
287
PHP框架接触有一段时间,主要是Kohana和Thinkphp。这两个框架各有各的特色,总体来说Kohana还是相对来说比较简单,但是国内资料较少。简单的,我把我的这个框架命名为Demo.框架搭建第一步,总体目录规划:目录
APP(应用)->TEM (主题) -> SYS (系统)||-------...
分类:
其他好文 时间:
2014-06-11 11:29:21
阅读次数:
249
var synj = ""; var xnxq = "";
OnchangeSelect($("#nj"), "LogicLayer.Sys.OptionInfo", "EasyUIDownListEvent",
"xnxqrxnj," + xnxq + ...
分类:
其他好文 时间:
2014-06-11 09:43:21
阅读次数:
265
人人网的文档写的真的和屎一样,根本就不用那么复杂1.申请 APP key 和 secret
key
网址:http://dev.renren.com/2.点击网页上的按钮,跳转到http://graph.renren.com/oauth/authorize?response_type=code&cl...
分类:
Web程序 时间:
2014-06-11 09:35:36
阅读次数:
427
1、错误描述
六月 04, 2014 11:04:03 下午 freemarker.log.JDK14LoggerFactory$JDK14Logger error
严重: Template processing error: "Expression maps.key is undefined on line 15, column 25 in map.ftl."
Expression maps...
分类:
其他好文 时间:
2014-06-07 13:59:28
阅读次数:
298
最近看了很多介绍图算法的文章,发现网上可以搜到的资料比较少,所以打算在这写一个介绍图算法的系列文章,一方面是帮助自己整理,另一方面也给大家分享下这方面的知识。1.1图的定义: 图(graph)由顶点(vertex)和边(edge)的集合组成,每一条边就是一个点对(v,w)。图的种类:地图,电路图,调...
分类:
其他好文 时间:
2014-06-07 06:13:29
阅读次数:
305