- All *51
- = [
- Technology *33 ,
- Misc *9 ,
- Physics *9
- ]
Category:
-
E=mc^2 的简单推导
More...
相对论的质能方程简单推导过程,参考Miniute Physics的一个视频写的。
-
Doubly Linked Hashmap
More...
My implementation of Doubly Linked Hashmap in Java.
LinkedHashmap is used specially for LRU Cache (least recently used cache).
It maintains the insertion order of entries of hashmap.
-
Algorithm -- Maximum Single-Sell Profit
More...
This is a classic interview question.
You can cracking it by brute force, divide-and-conquer, and expectly, dynamic programming.
The famous post talking about it on StackOverflow.
You can verify your answers via the LeetCode problem
-
转发以前写的东西 浅析wow十大教主
More...
转发的第二篇
这样一来这个blog会不会弄得不像技术blog了。Whatever,反正我有分类。关于Technology的内容我还会继续积累,关于无聊的琐碎我也会不定时写写。
Posted 2008年01月28日 by GaGa Bicycler
-
转发以前写的东西 网络用语汇集
More...
闲来无事,转发两篇以前在msn space上面写的东西。算是少有的几篇非负面情绪的东西吧哈哈。
貌似是2004年高中毕业前开始写space的,这算是早期的一篇吧。
Posted 2006年05月20日 by GaGa Bicycler
-
我的滑板鞋
More...
我的滑板鞋 – 约瑟翰 庞麦郎
懂的人是不需要说的,不懂的人说了也不会懂。
</embed>
-
Algorithm -- Binary Tree to Linked List (In-place)
More...
Flatten a Binary Tree to Linked List, with preorder, inorder, or postorder. Implement the algorithm in place.
I’ll use 3 different methods to implement each order. They are
[recursion with TreeNode, void recursion, iteration]
.