上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 34 下一页
摘要: 整个金融行业大致分为buy side和sell side两大类。Sell side做的主要是把各种asset变成各种金融产品,提供给市场。Sell side主要指的是通常意义上的投行。投行内部结构也很复杂,按照产品分大致分为fixed income和equity两大类。按照业务分大致分为IBD, s... 阅读全文
posted @ 2014-06-07 17:27 linyx 阅读(591) 评论(0) 推荐(0) 编辑
摘要: 因为平常用的话只是vector的一些非常简单的功能,基本上把它当数组来用,现在也只是把这一部分写了一些。 1 template 2 class XVector { 3 public: 4 XVector(int cacheSize):cacheSize(cacheSize), count(0... 阅读全文
posted @ 2014-06-07 13:25 linyx 阅读(167) 评论(0) 推荐(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... 阅读全文
posted @ 2014-06-07 01:14 linyx 阅读(233) 评论(0) 推荐(0) 编辑
摘要: 等比数列的通项公式:\(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\)特征值和特征向量:设... 阅读全文
posted @ 2014-06-07 00:37 linyx 阅读(366) 评论(0) 推荐(0) 编辑
摘要: You are given an n x n 2D matrix representing an image.Rotate the image by 90 degrees (clockwise).Follow up:Could you do this in-place?实现题。从最外圈顺时针交换,最... 阅读全文
posted @ 2014-06-06 22:24 linyx 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 1.1Implement an algorithm to determine if a string has all unique characters. What if you cannot use additional data structures?字符串问题,需要先确定是不是只有ASCII码... 阅读全文
posted @ 2014-06-06 14:45 linyx 阅读(283) 评论(0) 推荐(0) 编辑
摘要: IEEE 802.1X是IEEE制定关于用户接入网络的认证标准(注意:此处X是大写),全称是“基于端口的网络接入控制”,属于IEEE 802.1网络协议组的一部分。于2001年标准化,之后为了配合无线网络的接入进行修订改版,于2004年完成。它为想要连接到LAN或WLAN的设备提供了一种认证机制。I... 阅读全文
posted @ 2014-06-06 00:11 linyx 阅读(502) 评论(0) 推荐(0) 编辑
摘要: Manholes, which interconnect underground sewerage pipes, and serve as a point of entry for cleaning the pipes, are located at every major sewer pipe j... 阅读全文
posted @ 2014-06-05 22:18 linyx 阅读(411) 评论(0) 推荐(0) 编辑
摘要: 来HK之后,锻炼的时间就少了许多。以后还是要抓紧啊。 计划,两天一次。 1.热身3~5min。2.无氧运动30~60min。(200俯卧撑、300仰卧起坐)3.有氧运动30~60min。(跑步、游泳、羽毛球) 现在一些观点表明仰卧起坐的训练效果不大,而且有可能损伤脊柱,因此很多训练计划都改为使用卷腹 阅读全文
posted @ 2014-06-05 21:47 linyx 阅读(308) 评论(0) 推荐(0) 编辑
摘要: You are given a function rand(a, b) which generates equiprobable random numbers between [a, b] inclusive. Generate 3 numbers x, y, z with probability ... 阅读全文
posted @ 2014-06-05 19:50 linyx 阅读(153) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 34 下一页