- All *53
- = [
- Technology *33 ,
- Misc *9 ,
- Physics *11
- ]
Category:
-
Algorithm -- Permutation Combination Subset
Technology algorithm 11 , java 5 , Permutation 1 , Combination 1 , Subset 1 , DFS 1 , Binary Operation 1More...
Given a collection of numbers, return all possible
Permutations
,K-Combinations
, or allSubsets
are the most fundamental questions in algorithm.They can be impelmented by simple
recursion
,iteration
,bit-operation
, and some other approaches. I mostly use Java to code in this post. -
加州摩托记(二) -- 驾驶技巧 之 离合与挂档
More...
骑摩托车肯定能欣赏到和开车不一样的美景吧?
是这样的。但是如果没有养成良好的挂档习惯,很容易造成事故。
一般摩托车分为 1~5个 行进档 和 1个 N空档。顺序是 1N2345。
-
加州摩托记(一)-- 学 和 买
More...
摩托车是我向往的交通工具。
从小喜欢骑自行车,也很擅长骑。高中毕业的时候看了一部动画叫 奇诺之旅,就是一个不知性别的可爱小X生骑车摩托周游他的那个世界,每集都到一个不同的古怪国家。对Ducati 1098R的情有独钟,幻想过晚上骑摩托在城市的高架飞驰,看过一段时间MotoGP,知道车手Capirossi….
加州的阳光,很少下雨的气候提供了很好的骑车条件。骑摩托可以减少交通拥堵的困扰,驾照了解了一下也不难考,所以决定上摩托。
-
Shor's Algorithm crackes RSA
More...
利用量子计算机和Shor算法可以攻克RSA加密。
-
量子超距传输的一种实现方式 [摘要]
More...
在科幻小说中经常有一种瞬间移动的机器,人一旦进入里面,启动机器,输入目的地,就会在另一个位于目的地的机器中出现。 基于的原理基本是瞬间移动机器内的每一个分子原子都被扫描并且复制,在此处消散,再在目的地的机器内重新复制出来。
[我曾想象WoW中法师的blink就是基于这样一个理论(当然也有可能是瞬间产生一个段距离虫洞,开门则是长距离虫洞)。]
-
iOS Delegate -- Respond UI Event by Delegate
More...
In the last post I talked about how to Customsize an UI Widget. There is a use case of the Widget: respond some UI event of the Widget in another View Controller.
-
iOS UI -- Custom UI with Embeded Table View Cell
More...
In an .xid file, you can not define a custom Table View Cell in the Table View. (Although you can do it in storyboard).
If you want to do so, you have to create the Table View Cell by codes.