码迷,mamicode.com
首页 >  
搜索关键字:binary index tree    ( 56466个结果
Copy 函数
函数原型:Unit Systemfunction Copy(S: string; Index, Count: Integer): string;说明:S : 字符串. Indexd : 从第几位开始拷贝. Count : 总共要拷贝几位. 从母字符串拷贝至另一个字符串返回值:结果返回新字符串
分类:其他好文   时间:2014-06-27 19:39:07    阅读次数:151
Git使用说明
1. Git概念1.1. Git库中由三部分组成 Git 仓库就是那个.git 目录,其中存放的是我们所提交的文档索引内容,Git 可基于文档索引内容对其所管理的文档进行内容追踪,从而实现文档的版本控制。.git目录位于工作目录内。1) 工作目录:用户本地的目录;2) Index(索引):将工作目录...
分类:其他好文   时间:2014-06-27 19:26:15    阅读次数:202
Leetcode: Unique Binary Search Trees
Given n, how many structurally unique BST's (binary search trees) that store values 1...n?For example,Given n = 3, there are a total of 5 unique BST's...
分类:其他好文   时间:2014-06-27 18:22:07    阅读次数:191
切换加上延迟加载js代码
切换加上延迟加载js代码(function(){ var tit = $("#tab02 li"), con = $("#wrapmp>div"), cur = 'cur'; tit.click(function(){ var index = tit...
分类:Web程序   时间:2014-06-27 18:03:03    阅读次数:176
侠物语破解算法
private function decode(data:ByteArray):ByteArray{ var dest:ByteArray = new ByteArray(); var index:int; var key:String = "I'm a big big girl ...
分类:其他好文   时间:2014-06-27 17:50:20    阅读次数:185
剑指offer (39) 二叉树深度
题目:输入一棵二叉树的根节点,求该树的深度题解分析:二叉树具有天然的递归性,首先应该想递归解法/** * Definition for binary tree * struct TreeNode { * int val; * TreeNode *left; * TreeNod...
分类:其他好文   时间:2014-06-27 15:58:59    阅读次数:206
Html5新特性 <canvas>画板画直线
??以下样例为用canvas标签画多条直线index_three您的浏览器不支持canvas标签。
分类:Web程序   时间:2014-06-26 15:43:53    阅读次数:190
桌面控件Widget的使用
开发者文档中详细介绍了Widget的使用方法 file:///D:/Program%20Files%20(x86)/Andriod/android-sdks/docs/guide/topics/appwidgets/index.html 最终效果展示: 1. 首先建立AppWidgetProvide...
分类:其他好文   时间:2014-06-26 15:16:01    阅读次数:862
Leetcode Maximal Rectangle
Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing all ones and return its area.时间复杂度O(n^3),最大全1子矩阵,利用直方图求解,可以参考对...
分类:其他好文   时间:2014-06-26 15:08:46    阅读次数:164
Python pip 学习
pip是一个安装和管理 Python 包的工具 , 是easy_install的一个替换品。本文将详细说明 安装 pip 的方法和 使用 pip 的一些基本操作如安装、更新和卸载 python 包。在线文档地址:http://pip.readthedocs.org/en/latest/index.....
分类:编程语言   时间:2014-06-26 14:57:11    阅读次数:234
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!