发布时间:2013-01-07 11:34:47
YUV FormatsYUV formats fall into two distinct groups, the packed formats where Y, U (Cb) and V (Cr) samples are packed together into macropixels which are stored in a single array, and the planar formats where each component is stored as a separate array, the final image being ......【阅读全文】
发布时间:2013-01-07 09:25:23
一致性 hash 算法( consistent hashing )consistent hashing 算法早在 1997 年就在论文 Consistent hashing and random trees 中被提出,目前在cache 系统中应用越来越广泛;1 基本场景比如你有 N 个 cache 服务器(后面简称 cache ),那么如何将一个对象 object 映射到 N 个&nbs......【阅读全文】
发布时间:2013-01-07 09:25:00
MP3-Code编解码原理详细分析 http://www.docin.com/p-134595762.html ......【阅读全文】
发布时间:2012-12-31 16:24:45
一般而言抽象和实现会在同一个类层次里,就像这样: interface SomeInterface { virtual void f() = 0; }class SomeImplementation : public SomeInterface { virtual void f() {} } 这种设计的好处在于用户只和接口 交互,所以实现可以随意改变。但是接口的改变会影响到实现,所以当接口需要经常改变时,就可能需要桥接模式。 class Abstract{public: virtual void f() = 0;private: &......【阅读全文】