• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录

xxxqqq

  • 博客园
  • 联系
  • 订阅
  • 管理

2017年5月12日

Spring LazyInitializatoinException

摘要: 今天做project创建了一个新的类A,这个新类包含了一个另外一个类B的Set。B类包含了另外一个C类的集合。。。 I define a get function with A's aId and B's bId as input parameters in A's facade and it sh 阅读全文

posted @ 2017-05-12 23:55 xxxqqq 阅读(151) 评论(0) 推荐(0)

2017年5月11日

实时输出topk最频繁变动的股价

摘要: 网上看到了一道关于bloomburg的面试题,follow 评论的思路 自己试着写了一个HashHeap的实现。 基本思路是维护一个大小为K的最小堆,里面是topK股价变动的公司ID(假设ID是Integer) HashHeap中维护一个companyIdHeap 之外还有一个HashMap 它的k 阅读全文

posted @ 2017-05-11 05:50 xxxqqq 阅读(367) 评论(0) 推荐(0)

2017年5月10日

optimal-account-balancing

摘要: 一群朋友去度假,有时互相借钱。 例如,爱丽丝为比尔的午餐支付了 10 美元。后来克里斯给爱丽丝 5 美元搭出租车。我们可以假设每笔交易为一个三元组(X,Y,Z),这意味着第 X 个人借给第 Y 个人 Z 美元。假设 Alice,Bill 和 Chris 是第0,1,2 个人(0,1,2是他们的ID) 阅读全文

posted @ 2017-05-10 15:43 xxxqqq 阅读(244) 评论(0) 推荐(0)

TreeSet VS HashSet VS LinkedHashSet; TreeMap VS HashMap VS LinkedHashMap

摘要: From online resources Set HashSet is much faster than TreeSet (constant-time versus log-time for most operations like add, remove and contains) but of 阅读全文

posted @ 2017-05-10 15:35 xxxqqq 阅读(179) 评论(0) 推荐(0)

Triangle Count

摘要: Given an array of integers, how many three numbers can be found in the array, so that we can build an triangle whose three edges length is the three n 阅读全文

posted @ 2017-05-10 15:29 xxxqqq 阅读(267) 评论(0) 推荐(0)

Reverse Pairs

摘要: For an array A, if i < j, and A [i] > A [j], called (A [i], A [j]) is a reverse pair. return total of reverse pairs in A. Example Given A = [2, 4, 1, 阅读全文

posted @ 2017-05-10 15:23 xxxqqq 阅读(241) 评论(0) 推荐(0)

Move Zeroes

摘要: Given an array nums, write a function to move all 0's to the end of it while maintaining the relative order of the non-zero elements. Notice You must 阅读全文

posted @ 2017-05-10 15:22 xxxqqq 阅读(307) 评论(0) 推荐(0)

Intersection of Two Arrays II

摘要: Given two arrays, write a function to compute their intersection. Example Given nums1 = [1, 2, 2, 1], nums2 = [2, 2], return [2, 2]. 利用较小的数组建m(下面代码并没有 阅读全文

posted @ 2017-05-10 15:20 xxxqqq 阅读(184) 评论(0) 推荐(0)

Intersection of Two Arrays

摘要: Given two arrays, write a function to compute their intersection. Example Given nums1 = [1, 2, 2, 1], nums2 = [2, 2], return [2]. 利用较小的数组建set 节省空间 1 p 阅读全文

posted @ 2017-05-10 15:17 xxxqqq 阅读(280) 评论(0) 推荐(0)

Create Maximum Number

摘要: Given two arrays of length m and n with digits 0-9 representing two numbers. Create the maximum number of length k <= m + n from digits of the two. Th 阅读全文

posted @ 2017-05-10 15:13 xxxqqq 阅读(183) 评论(0) 推荐(0)

下一页
 
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3