routerCheck();}/*** 路由检测*/function routerCheck(){global $config;$this->config=$config;$suffix=$this->config['URL_HTML_SUFFIX'];// 获取当前路由参数对应的变量$paths ...
分类:
Web程序 时间:
2014-12-11 15:14:28
阅读次数:
193
使用 CocoaHTTPServer 的时候,报错 libxml/parser.h not found
解决办法:添加链接库 libxml2.dylib
在 header search paths 处 添加 ${SDK_DIR}/usr/include/libxml2
这里说明一下,有的教程说,在此处添加
${SDK_ROOT}/user/include/libxml2, 这个应该是在开...
分类:
其他好文 时间:
2014-12-10 19:55:18
阅读次数:
245
Unique Paths IIFollow up for "Unique Paths":Now consider if some obstacles are added to the grids. How many unique paths would there be?An obstacle an...
分类:
其他好文 时间:
2014-12-10 14:00:35
阅读次数:
159
题目是这样的,给定一个m*n的矩形方格,每次走一格,并且只能向右和向下走,求从左上角到右下角的路径数。
扩展问题:如果在方格中写入0和1,其中1代表障碍,也就是不能通过此方格,求其路径数。...
分类:
其他好文 时间:
2014-12-10 00:34:46
阅读次数:
169
// 将"已经裁剪好的照片"写入到沙盒中- (void)writeIntoSandboxWithImage:(UIImage *)image{ NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUs....
分类:
其他好文 时间:
2014-12-09 19:11:17
阅读次数:
190
【题目】
Follow up for "Unique Paths":
Now consider if some obstacles are added to the grids. How many unique paths would there be?
An obstacle and empty space is marked as 1 and 0 respectively...
分类:
其他好文 时间:
2014-12-08 17:47:15
阅读次数:
167
【题目】
A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below).
The robot can only move either down or right at any point in time. The robot is trying to ...
分类:
其他好文 时间:
2014-12-08 17:45:44
阅读次数:
213
1.<scriptsrc="
2.<scripttype="text/javascript">
//路径配置
require.config({
paths:{
echarts:‘http://echarts.baidu.com/build/dist‘
}
});
//使用
require(//通过动态加载使用echarts
[
‘echarts‘,
‘echarts/chart/bar‘,//使用柱状图就加载bar模块,按需加载
‘..
分类:
其他好文 时间:
2014-12-08 15:49:13
阅读次数:
221
9.2 设想有个机器人坐在X*Y网格的左上角,只能向右、向下移动。机器人从(0,0)到(X,Y)有多少种走法?进阶:假设有些点为“禁区”,机器人不能踏足。设计一种算法,找到一条路径,让机器人从左上角移动到右下角。类似leetcode:Unique Paths和Unique Paths II解法:我们...
分类:
其他好文 时间:
2014-12-07 19:03:50
阅读次数:
191
NSFileManager *fileManager = [NSFileManager
defaultManager];
NSError *error;
//复制本地数据库文件到安装目录
NSArray *paths =
NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,
N...
分类:
数据库 时间:
2014-12-05 19:26:07
阅读次数:
153