cURL cURL是 URL命令行工具, 即 command URL,
可以通过命令行模拟各种应用协议的发包, 包括FTP HTTP HTTPS,官方网站 http://curl.haxx.se/luacurllua
curl是基于curl的库libcurl(http://curl.haxx.s.....
分类:
其他好文 时间:
2014-05-26 13:49:03
阅读次数:
688
原题地址:https://oj.leetcode.com/problems/recover-binary-search-tree/题意:Two
elements of a binary search tree (BST) are swapped by mistake.Recover the
tree...
分类:
编程语言 时间:
2014-05-26 13:25:43
阅读次数:
261
Input file (d:\t) was not found or was not
readable 出现这个错误是因为apktool压缩包下载错误,我是下成首页的那个压缩包了
正确下载地址:https://code.google.com/p/android-apktool/downloads/l...
分类:
移动开发 时间:
2014-05-26 12:35:23
阅读次数:
1117
Android应用性能测试(客户端-服务端)平台实现东海陈光剑2014年5月23日
2:01:05开源项目代码:https://github.com/universsky/EmmageePlus(基于Emmagee)https://github.com/universsky/EmmageePlus/...
分类:
移动开发 时间:
2014-05-26 12:16:40
阅读次数:
1289
DBCamera轻量级定制摄像头https://github.com/danielebogo/DBCameraDBCamera
is a simple custom camera with
AVFoundation.DBCamera使用了AVFoundation框架并简单的定制了摄像头.Gettin...
分类:
数据库 时间:
2014-05-26 11:58:35
阅读次数:
447
解决方案: 将https修改为http://在Android SDK
manager中,的tools文件夹下,选择options...选项, 勾选 Force https//... sources to be fetched
using http:// 之后点击close 然后再 c:\\wi...
分类:
移动开发 时间:
2014-05-26 11:52:43
阅读次数:
324
原题地址:https://oj.leetcode.com/problems/validate-binary-search-tree/题意:检测一颗二叉树是否是二叉查找树。解题思路:看到二叉树我们首先想到需要进行递归来解决问题。这道题递归的比较巧妙。让我们来看下面一棵树:
...
分类:
编程语言 时间:
2014-05-26 10:48:19
阅读次数:
291
原题地址:https://oj.leetcode.com/problems/same-tree/题意:判断两棵树是否是同一棵树。解题思路:这题比较简单。用递归来做。首先判断两个根节点的值是否相同,如果相同,递归判断根的左右子树。代码:#
Definition for a binary tree n....
分类:
编程语言 时间:
2014-05-26 10:30:17
阅读次数:
289
原题地址:https://oj.leetcode.com/problems/symmetric-tree/题意:判断二叉树是否为对称的。Given
a binary tree, check whether it is a mirror of itself (ie, symmetric around ...
分类:
编程语言 时间:
2014-05-26 10:18:52
阅读次数:
293
原题地址:https://oj.leetcode.com/problems/n-queens/题意:经典的N皇后问题。解题思路:这类型问题统称为递归回溯问题,也可以叫做对决策树的深度优先搜索(dfs)。N皇后问题有个技巧的关键在于棋盘的表示方法,这里使用一个数组就可以表达了。比如board=[1,
...
分类:
编程语言 时间:
2014-05-26 10:07:52
阅读次数:
274