码迷,mamicode.com
首页 >  
搜索关键字:samll note    ( 7370个结果
leetcode - Recover Binary Search Tree
题目:Recover Binary Search TreeTwo elements of a binary search tree (BST) are swapped by mistake.Recover the tree without changing its structure.Note:A ...
分类:其他好文   时间:2014-06-28 10:26:38    阅读次数:253
Leetcode Merge Sorted Array
Given two sorted integer arrays A and B, merge B into A as one sorted array.Note:You may assume that A has enough space (size that is greater or equal...
分类:其他好文   时间:2014-06-25 23:01:44    阅读次数:227
opencv-图像金字塔
图像金字塔 目标 本文档尝试解答如下问题: 如何使用OpenCV函数 pyrUp 和 pyrDown 对图像进行向上和向下采样。 原理 Note   以下内容来自于Bradski和Kaehler的大作: Learning OpenCV 。 当我们需要将图像转换到另一个尺寸的时候, 有两种可能: 放大 图像 或者缩小 图像。...
分类:其他好文   时间:2014-06-24 22:54:22    阅读次数:346
LeetCode:Pascal's Triangle II
Given an index k, return the kth row of the Pascal's triangle. For example, given k = 3, Return [1,3,3,1]. Note: Could you optimize your algorithm to use only O(k) extra space? ...
分类:其他好文   时间:2014-06-22 21:31:26    阅读次数:214
LeetCode——Binary Tree Postorder Traversal
Given a binary tree, return the postorder traversal of its nodes' values. For example: Given binary tree {1,#,2,3}, 1 2 / 3 return [3,2,1]. Note: Recursive solut...
分类:其他好文   时间:2014-06-22 20:58:01    阅读次数:157
InnoDB: Error: log file .\ib_logfile0 is of different size 0 10485760 bytes
启动WAMP Server的时候报如下的错误: 140618 23:12:32 [Note] Plugin 'FEDERATED' is disabled. 140618 23:12:32 InnoDB: The InnoDB memory heap is disabled 140618 23:12:32 InnoDB: Mutexes and rw_locks use Windows inte...
分类:数据库   时间:2014-06-22 20:31:08    阅读次数:471
Leetcode-subsets
题目: Given a set of distinct integers, S, return all possible subsets. Note: Elements in a subset must be in non-descending order.The solution set must not contain duplicate subsets. ...
分类:其他好文   时间:2014-06-22 17:51:54    阅读次数:196
leetcode -day31 Subsets I II
1、 ?? Subsets Given a set of distinct integers, S, return all possible subsets. Note: Elements in a subset must be in non-descending order.The solution set must not contain duplicate subset...
分类:其他好文   时间:2014-06-22 17:08:53    阅读次数:179
LeetCode——Binary Tree Preorder Traversal
Given a binary tree, return the preorder traversal of its nodes' values. For example: Given binary tree {1,#,2,3}, 1 2 / 3 return [1,2,3]. Note: Recursive soluti...
分类:其他好文   时间:2014-06-22 16:37:51    阅读次数:168
jquery的attr方法禁用表单元素
jquery禁用输入内容 $(function(){ $("#name").attr("disabled","disabled"); $("#note").attr("disabled","disabled"); $("#submitBtn").attr("disabled","disabled"); }) 姓名: 说明:   提交...
分类:Web程序   时间:2014-06-22 09:45:37    阅读次数:273
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!