码迷,mamicode.com
首页 >  
搜索关键字:note to self    ( 21530个结果
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
AFNetwork 2.0在请求时报错code=-1016 和 3840
在进行网络请求时出现-1016 是因为只支持 text/json,application/json,text/javascript 你可以添加text/html  一劳永逸的方法是 在 AFURLResponseSerialization.h 里面搜索 self.acceptableContentTypes 然后 在里面 添加 @"text/html",@"...
分类:Web程序   时间:2014-06-22 18:59:38    阅读次数:185
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
微软继MVC5后,出现ASP.NET VNEXT
vNext又称MVC 6.0,不再需要依赖System.Web,占用的内存大大减少(从前无论是多么简单的一个请求,System.Web本身就要占用31KB内存)。        可以self-host模式运行,网站不再需要依赖IIS而运行,由此从此可以快速向客户演示开发进度,以及更好地支持真正跨平台(Linux、Mac、Unix)。       Web Api、Web Pages与MVC完全融...
分类:Web程序   时间:2014-06-22 17:49:39    阅读次数:236
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
iOS Dev (54) 键盘弹出后收起时View随之移动
iOS Dev (54) 键盘弹出后收起时View随之移动 作者:大锐哥博客:http://prevention.iteye.com - 添加监听 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(c...
分类:移动开发   时间:2014-06-22 14:56:07    阅读次数:222
[转]Windows Images for OpenStack
This note summarizes articles from other places about Microsoft Windows images for OpenStack creation, along with some first hand experience. The whol...
分类:Windows程序   时间:2014-06-21 16:51:38    阅读次数:386
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!