- All *51
- = [
- Technology *33 ,
- Misc *9 ,
- Physics *9
- ]
Category:
-
LeetCode Question -- Word Ladder II
More...
题目来源: LeetCode OJ, Word Ladder II
思路简介: 先用BFS找出最短路径,在Word Ladder I的基础上修改,使BFS遍历到的word按遍历先后层级排列;然后用DFS找出所有可能的最短路径。
-
磨刀不误砍柴工 系列之 三 : Dynamic Programming
More...
Dynamic Programming (DP) is a general algorithm design paradigm. Its inventor is Richard Bellman. DP is originated from his mathemetical research.
-
Learn Skateboarding
More...
I bought a skateboard this week on ebay, with $39. And begin to learn how to play with it.
-
山河人海
More...
最近挺喜欢听朴树为韩寒的电影唱的《平凡之路》。
我曾经跨过山和大海,也穿过人山人海。
-
Remote SSH to VMware GuestOS
More...
在NAT网络配置下,很多人都可以很轻松地从Host OS上ssh到VMware的Guest OS,只需要把Host OS和Guest OS当作是在由VMware所管理的同一个子网下的两台机器就可以了。
那么如果我有另一台笔记本或者手机,想要SSH到我台式机中VMware下的一台虚拟机该如何操作呢?
-
Object Oriented Design -- Chess Game
More...
Object Oriented Design for Chess Game.
This is a simple version by myself, as I have not found a simple one on the Internet.
-
公钥加密算法(三) Rabin
More...
The Rabin Cryptosystem is based on the idea that computing square roots modulo a composite N is simple when the factorization is known, but the very complex when it is unknown.
Rabin加密系统是基于在已知合数N的因式分解的情况下,可以计算出二次剩余的平方根;但是在因式分解N未知的情况下很难求解的原理。