上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 16 下一页
摘要: 题目:Given an array of integers, every element appears twice except for one. Find that single one. 题意及分析:一个数组中,有一个数只出现了一次,其他的出现了两次。要求给出只出现一次的数。这道题,最简单的方 阅读全文
posted @ 2017-07-12 20:19 荒野第一快递员 阅读(330) 评论(0) 推荐(0) 编辑
摘要: 题目:Given an array of citations (each citation is a non-negative integer) of a researcher, write a function to compute the researcher's h-index. Accord 阅读全文
posted @ 2017-07-12 18:56 荒野第一快递员 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 题目: Given two strings s and t, write a function to determine if t is an anagram of s. For example,s = "anagram", t = "nagaram", return true.s = "rat", 阅读全文
posted @ 2017-07-01 11:20 荒野第一快递员 阅读(340) 评论(0) 推荐(0) 编辑
摘要: 题目: Given a list of non negative integers, arrange them such that they form the largest number. For example, given [3, 30, 34, 5, 9], the largest form 阅读全文
posted @ 2017-07-01 10:54 荒野第一快递员 阅读(793) 评论(0) 推荐(0) 编辑
摘要: 题目:Sort a linked list in O(n log n) time using constant space complexity. 题意及分析:要求使用o(nlogn)的时间复杂度和o(1)的空间复杂度将链表排序。o(nlogn)的排序算法有快速排序,归并排序和堆排序。但是快速排序最 阅读全文
posted @ 2017-06-29 10:06 荒野第一快递员 阅读(476) 评论(0) 推荐(0) 编辑
摘要: 题目: Sort a linked list using insertion sort. 题意及分析:要求使用插入排序将一个链表排序,这里直接使用一个新链表存储,每次遍历到一个要添加的点时就遍历新链表找到需要插入的位置,将点插入即可。具体看代码: 代码: 阅读全文
posted @ 2017-06-28 14:20 荒野第一快递员 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 题目: Given a collection of intervals, merge all overlapping intervals. For example,Given [1,3],[2,6],[8,10],[15,18],return [1,6],[8,10],[15,18]. 题意及分析: 阅读全文
posted @ 2017-06-28 09:58 荒野第一快递员 阅读(693) 评论(0) 推荐(0) 编辑
摘要: 题目: Suppose you have a random list of people standing in a queue. Each person is described by a pair of integers (h, k), where h is the height of the 阅读全文
posted @ 2017-06-27 10:57 荒野第一快递员 阅读(1067) 评论(0) 推荐(0) 编辑
摘要: 题目: Given a non-negative integer num represented as a string, remove k digits from the number so that the new number is the smallest possible. Note: T 阅读全文
posted @ 2017-06-27 09:44 荒野第一快递员 阅读(708) 评论(1) 推荐(1) 编辑
摘要: 题目: Given a non-negative integer num represented as a string, remove k digits from the number so that the new number is the smallest possible. Note: T 阅读全文
posted @ 2017-06-27 09:44 荒野第一快递员 阅读(193) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 16 下一页