转载自:http://www.devtf.cn/?p=120https://medium.com/the-wtf-files/the-mysterious-case-of-the-bundle-and-the-map-7b15279a794e原文链接 :The mysterious case of ...
分类:
其他好文 时间:
2015-04-28 22:18:43
阅读次数:
220
目录:Linked List CycleBinary Tree Right Side ViewLinked List Cycle 返回目录Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it...
分类:
其他好文 时间:
2015-04-26 16:43:25
阅读次数:
176
以后有关avalon的版本升级消息,全部改放到这里重构parseHTML,让其支持xhtml强化 ms-duplex-number拦截器 添加data-duplex-number辅助指令 值为strong medium weak ms-duplex添加对input[type=hidden]的支持cr...
分类:
Web程序 时间:
2015-04-15 16:27:34
阅读次数:
161
原以为BIRT中的indexOf函数直接与JavaScript中的一样,就如同substr和replace一样,但是一直遇到function undefined的错误。
domain = row["MEDIUM_STRING_VAL"].substr(1);
i = BirtStr.indexOf('\|', domain);
domain.substr(0, i);...
分类:
其他好文 时间:
2015-04-14 23:22:55
阅读次数:
152
/** * ID: 24 * Name: Swap Nodes in Pairs * Data Structure: Linked List * Time Complexity: * Space Complexity: * Tag: LinkList * Difficult: Medium ...
分类:
其他好文 时间:
2015-04-14 07:10:45
阅读次数:
127
/** * ID: 92 * Name: Reverse Linked List * Data Structure: Linked List * Time Complexity: * Space Complexity: * Tag: LinkList * Difficult: Medium ...
分类:
其他好文 时间:
2015-04-14 07:04:18
阅读次数:
192
/** * ID: 2 * Name: Add Two Numbers * Data Structure: Linked List * Time Complexity: * Space Complexity: * Tag: LinkList * Difficult: Medium * Pro...
分类:
其他好文 时间:
2015-04-13 06:54:00
阅读次数:
169
/** * ID: 61 * Name: Rotate List * Data Structure: Linked List * Time Complexity: * Space Complexity: * Tag: LinkList * Difficult: Medium * Probl...
分类:
其他好文 时间:
2015-04-12 06:40:01
阅读次数:
177
一个二叉排序树的某两个节点颠倒了为了,去恢复它。
不可思议的是这道题居然被标记为了hard,其实难度远低于其他的hard或medium。
思路:中序遍历,然后看是不是递增的,如果不是,记录下来。注意,可能有一次逆序,也可能有两次,一次的发生在相邻节点。
注意,中序遍历是这样的:
void f(node * root){
if(root==NULL)
return;
f...
分类:
其他好文 时间:
2015-04-06 18:46:16
阅读次数:
119
Openerp目前存储图片如人力资源头像图片等都是以二进制的方式存储在数据库中,若要修改数据库里只存储路径可以用这种方法 Image 装饰器: Image装饰器包含3中图片显示 Image 大图片 image_medium 中图片 image_small 小图片 我们在openerp源码中看到有个两...
分类:
其他好文 时间:
2015-04-06 11:14:21
阅读次数:
125