代码改变世界

]Leetcode]-[Reorder List ]-三种解法

2015-03-13 21:58 by 欧陈庚, 427 阅读, 0 推荐, 收藏, 编辑
摘要:Given a singly linked listL:L0→L1→…→Ln-1→Ln,reorder it to:L0→Ln→L1→Ln-1→L2→Ln-2→…You must do this in-place without altering the nodes' values.For exam... 阅读全文

Leetcode-Reverse Bits

2015-03-09 20:30 by 欧陈庚, 366 阅读, 0 推荐, 收藏, 编辑
摘要:Reverse bits of a given 32 bits unsigned integer.For example, given input 43261596 (represented in binary as00000010100101000001111010011100), return ... 阅读全文

Leetcode-Fraction to Recurring Decimal

2015-03-09 19:09 by 欧陈庚, 297 阅读, 0 推荐, 收藏, 编辑
摘要:Given two integers representing the numerator and denominator of a fraction, return the fraction in string format.If the fractional part is repeating,... 阅读全文

[HBase]-默认端口被占用,启动报错

2015-01-13 14:41 by 欧陈庚, 5876 阅读, 0 推荐, 收藏, 编辑
摘要:启动hbase的时候,可以设置export HBASE_MANAGES_ZK=true,让hbase使用自带的zk。当时,当启动的时候报错如下:starting master, logging to /home/wde/hbase/hbase/bin/../logs/hbase-wde-master... 阅读全文

leetcode-LRU

2014-12-01 21:03 by 欧陈庚, 309 阅读, 0 推荐, 收藏, 编辑
摘要:题目:实现近期最少使用算法的缓存算法。即实现一个缓冲区(key-value数据对),要求满足下面两种操作:get(key)- 返回key对应的value,如果没有当前这个key,则返回-1set(key, value) 更新或者插入一个新的缓存k-V对,如果缓存区已经满了,则删除最少使用的。缓存区的... 阅读全文