摘要:
整个金融行业大致分为buy side和sell side两大类。Sell side做的主要是把各种asset变成各种金融产品,提供给市场。Sell side主要指的是通常意义上的投行。投行内部结构也很复杂,按照产品分大致分为fixed income和equity两大类。按照业务分大致分为IBD, s... 阅读全文
摘要:
因为平常用的话只是vector的一些非常简单的功能,基本上把它当数组来用,现在也只是把这一部分写了一些。 1 template 2 class XVector { 3 public: 4 XVector(int cacheSize):cacheSize(cacheSize), count(0... 阅读全文
摘要:
A basic requirement is that the function should provide a uniform distribution of hash values. A non-uniform distribution increases the number of coll... 阅读全文
摘要:
等比数列的通项公式:\(a_n=a_1q^{n-1}\)求和公式: \(S_n=\frac{a_1(1-q^n)}{1-q} (q \neq 1) \)等差数列的通项公式: \(a_n=a_1+(n-1)d\)求和公式:\(S_n=na_1+\frac{n(n-1)}{2}d\)特征值和特征向量:设... 阅读全文