摘要: 题目: Shuffle a set of numbers without duplicates. 分析: 对一组不包含重复元素的数组进行随机重排,reset方法返回最原始的数组,shuffle方法随机返回数组的一个排列, 并且使得获得数组每一个排列的概率都是相同的。为此,可以在初始化时,求出数组的所 阅读全文
posted @ 2016-08-12 14:21 江湖凶险 阅读(1840) 评论(0) 推荐(0) 编辑
摘要: 题目: You are given two integer arrays nums1 and nums2 sorted in ascending order and an integer k. Define a pair (u,v) which consists of one element fro 阅读全文
posted @ 2016-08-12 11:42 江湖凶险 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 题目: Given a n x n matrix where each of the rows and columns are sorted in ascending order, find the kth smallest element in the matrix. Example: 分析:采用 阅读全文
posted @ 2016-08-12 10:28 江湖凶险 阅读(852) 评论(0) 推荐(0) 编辑